feat: DeleteItem- und DocDeleteBody-Modelle für Dokumentenlöschanforderung erstellt
This commit is contained in:
parent
8249c99132
commit
6ee87f8b02
@ -0,0 +1,9 @@
|
|||||||
|
namespace WindreamHub.Legacy.Client.Models.Documents.Request.Delete
|
||||||
|
{
|
||||||
|
public class DeleteItem
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Location { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
namespace WindreamHub.Legacy.Client.Models.Documents.Request.Delete
|
||||||
|
{
|
||||||
|
public class DocDeleteBody
|
||||||
|
{
|
||||||
|
public DeleteItem Item { get; set; }
|
||||||
|
public int Flags { get; set; }
|
||||||
|
public int ResponseDetails { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user