SubscriptionsVM.cs 510 B

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