FilesVM.cs 559 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using FastReport.Utils.Json.Serialization;
  7. namespace FastReport.Cloud.FastReport.Models
  8. {
  9. internal sealed class FilesVM
  10. {
  11. [JsonProperty("files")]
  12. public ICollection<FileVM> Files { get; set; }
  13. [JsonProperty("count")]
  14. public long Count { get; set; }
  15. [JsonProperty("skip")]
  16. public int Skip { get; set; }
  17. [JsonProperty("take")]
  18. public int Take { get; set; }
  19. }
  20. }