SubscriptionFolder.cs 315 B

1234567891011121314
  1. 
  2. using FastReport.Utils.Json.Serialization;
  3. namespace FastReport.Cloud.FastReport.Models
  4. {
  5. internal sealed class SubscriptionFolder
  6. {
  7. [JsonProperty("folderId")]
  8. public string FolderId { get; set; }
  9. [JsonProperty("bytesUsed")]
  10. public long BytesUsed { get; set; }
  11. }
  12. }