Skip to content

Commit

Permalink
Fix UsersList input string not a valid int
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0n00ps committed Sep 11, 2023
1 parent 37bf9f8 commit 3926bf8
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions OF DL/Entities/Lists/UsersList.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down Expand Up @@ -116,8 +116,8 @@ public class SubscribedByData
public string? newPrice { get; set; }
public string? regularPrice { get; set; }
public string? subscribePrice { get; set; }
public int? discountPercent { get; set; }
public int? discountPeriod { get; set; }
public string? discountPercent { get; set; }
public string? discountPeriod { get; set; }
public DateTime? subscribeAt { get; set; }
public DateTime? expiredAt { get; set; }
public object renewedAt { get; set; }
Expand All @@ -137,8 +137,8 @@ public class SubscribedOnData
public string? newPrice { get; set; }
public string? regularPrice { get; set; }
public string? subscribePrice { get; set; }
public int? discountPercent { get; set; }
public int? discountPeriod { get; set; }
public string? discountPercent { get; set; }
public string? discountPeriod { get; set; }
public DateTime? subscribeAt { get; set; }
public DateTime? expiredAt { get; set; }
public object renewedAt { get; set; }
Expand All @@ -148,12 +148,12 @@ public class SubscribedOnData
public bool? isMuted { get; set; }
public string unsubscribeReason { get; set; }
public string duration { get; set; }
public int? tipsSumm { get; set; }
public int? subscribesSumm { get; set; }
public int? messagesSumm { get; set; }
public int? postsSumm { get; set; }
public int? streamsSumm { get; set; }
public int? totalSumm { get; set; }
public string? tipsSumm { get; set; }
public string? subscribesSumm { get; set; }
public string? messagesSumm { get; set; }
public string? postsSumm { get; set; }
public string? streamsSumm { get; set; }
public string? totalSumm { get; set; }
public DateTime? lastActivity { get; set; }
public int? recommendations { get; set; }
public List<object> subscribes { get; set; }
Expand All @@ -162,8 +162,8 @@ public class SubscribedOnData
public class SubscriptionBundle
{
public int? id { get; set; }
public int? discount { get; set; }
public int? duration { get; set; }
public string? discount { get; set; }
public string? duration { get; set; }
public string? price { get; set; }
public bool? canBuy { get; set; }
}
Expand Down

0 comments on commit 3926bf8

Please sign in to comment.