isn/src/isnd/Data/Catalog/RegistrationPageIndex.cs

13 lines
281 B
C#
Raw Normal View History

2022-09-23 20:34:51 +01:00
using Newtonsoft.Json;
namespace isnd.Data.Catalog
{
public class RegistrationPageIndex
{
[JsonProperty("count")]
public int Count { get => Items?.Length ?? 0; }
[JsonProperty("items")]
public RegistrationPage[] Items { get; set; }
}
}