2023-03-21 11:46:52 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace models
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class Trash
|
|
|
|
|
{
|
|
|
|
|
public string collectionId;
|
|
|
|
|
public string collectionName;
|
|
|
|
|
public string created;
|
|
|
|
|
public string id;
|
|
|
|
|
public string owner;
|
|
|
|
|
public string updated;
|
|
|
|
|
public List<Data> data;
|
2023-05-15 14:57:33 +02:00
|
|
|
|
public string number;
|
2023-03-21 11:46:52 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class TrashList
|
|
|
|
|
{
|
|
|
|
|
public int page;
|
|
|
|
|
public int perPage;
|
|
|
|
|
public int totalItems;
|
|
|
|
|
public int totalPages;
|
|
|
|
|
public Trash[] items;
|
|
|
|
|
}
|
|
|
|
|
}
|