forked from sim0n00ps/OF-DL
51 lines
1.7 KiB
C#
51 lines
1.7 KiB
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Users;
|
|
|
|
public class SubscribedOnDataDto
|
|
{
|
|
[JsonProperty("price")] public string? Price { get; set; }
|
|
|
|
[JsonProperty("newPrice")] public string? NewPrice { get; set; }
|
|
|
|
[JsonProperty("regularPrice")] public string? RegularPrice { get; set; }
|
|
|
|
[JsonProperty("subscribePrice")] public string? SubscribePrice { get; set; }
|
|
|
|
[JsonProperty("discountPercent")] public int? DiscountPercent { get; set; }
|
|
|
|
[JsonProperty("discountPeriod")] public int? DiscountPeriod { get; set; }
|
|
|
|
[JsonProperty("subscribeAt")] public DateTime? SubscribeAt { get; set; }
|
|
|
|
[JsonProperty("expiredAt")] public DateTime? ExpiredAt { get; set; }
|
|
|
|
[JsonProperty("renewedAt")] public DateTime? RenewedAt { get; set; }
|
|
|
|
[JsonProperty("discountFinishedAt")] public object? DiscountFinishedAt { get; set; }
|
|
|
|
[JsonProperty("discountStartedAt")] public object? DiscountStartedAt { get; set; }
|
|
|
|
[JsonProperty("status")] public object? Status { get; set; }
|
|
|
|
[JsonProperty("isMuted")] public bool? IsMuted { get; set; }
|
|
|
|
[JsonProperty("unsubscribeReason")] public string? UnsubscribeReason { get; set; }
|
|
|
|
[JsonProperty("duration")] public string? Duration { get; set; }
|
|
|
|
[JsonProperty("tipsSumm")] public string? TipsSumm { get; set; }
|
|
|
|
[JsonProperty("subscribesSumm")] public string? SubscribesSumm { get; set; }
|
|
|
|
[JsonProperty("messagesSumm")] public string? MessagesSumm { get; set; }
|
|
|
|
[JsonProperty("postsSumm")] public string? PostsSumm { get; set; }
|
|
|
|
[JsonProperty("streamsSumm")] public string? StreamsSumm { get; set; }
|
|
|
|
[JsonProperty("totalSumm")] public string? TotalSumm { get; set; }
|
|
|
|
[JsonProperty("subscribes")] public List<SubscribeDto>? Subscribes { get; set; }
|
|
}
|