using System.Collections.Generic; using FastReport.Utils.Json.Serialization; namespace FastReport.Cloud.FastReport.Models.DataSource { internal sealed class DataSourcesVM { [JsonProperty("dataSources")] public ICollection DataSources { get; set; } [JsonProperty("count")] public int Count { get; set; } [JsonProperty("skip")] public int Skip { get; set; } [JsonProperty("take")] public int Take { get; set; } } }