12345678910111213141516171819202122232425 |
- 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<FileVM> Files { get; set; }
- [JsonProperty("count")]
- public long Count { get; set; }
- [JsonProperty("skip")]
- public int Skip { get; set; }
- [JsonProperty("take")]
- public int Take { get; set; }
- }
- }
|