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; } } }