12345678910111213141516171819202122 |
-
- using System.Collections.Generic;
- using FastReport.Utils.Json.Serialization;
- namespace FastReport.Cloud.FastReport.Models
- {
- internal sealed class SubscriptionsVM
- {
- [JsonProperty("subscriptions")]
- public ICollection<SubscriptionVM> Subscriptions { get; set; }
- [JsonProperty("count")]
- public long Count { get; set; }
- [JsonProperty("skip")]
- public int Skip { get; set; }
- [JsonProperty("take")]
- public int Take { get; set; }
- }
- }
|