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