Adding trash api values when scanning a specific marker

This commit is contained in:
Nicolas SANS
2023-04-11 13:47:42 +02:00
parent af5acdae96
commit c092e3d426
32 changed files with 252 additions and 264 deletions

27
AR/Assets/models/Trash.cs Normal file
View 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;
}
}