Adding trash api values when scanning a specific marker
This commit is contained in:
27
AR/Assets/models/Trash.cs
Normal file
27
AR/Assets/models/Trash.cs
Normal file
@ -0,0 +1,27 @@
|
||||
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;
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class TrashList
|
||||
{
|
||||
public int page;
|
||||
public int perPage;
|
||||
public int totalItems;
|
||||
public int totalPages;
|
||||
public Trash[] items;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user