using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace AutoCatCore.Model.Requests { public class PagedResponse { [JsonProperty("count")] public int? Count { get; set; } [JsonProperty("pageToken")] public string PageToken { get; set; } [JsonProperty("items")] public List Items { get; set; } } }