using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using FastReport.Utils.Json.Serialization; namespace FastReport.Cloud.FastReport.Models { internal sealed class FilesVM { [JsonProperty("files")] public ICollection Files { get; set; } [JsonProperty("count")] public long Count { get; set; } [JsonProperty("skip")] public int Skip { get; set; } [JsonProperty("take")] public int Take { get; set; } } }