DataSourcesVM.cs 509 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. using FastReport.Utils.Json.Serialization;
  3. namespace FastReport.Cloud.FastReport.Models.DataSource
  4. {
  5. internal sealed class DataSourcesVM
  6. {
  7. [JsonProperty("dataSources")]
  8. public ICollection<DataSourceVM> DataSources { get; set; }
  9. [JsonProperty("count")]
  10. public int Count { get; set; }
  11. [JsonProperty("skip")]
  12. public int Skip { get; set; }
  13. [JsonProperty("take")]
  14. public int Take { get; set; }
  15. }
  16. }