1
- using System ;
2
1
using Newtonsoft . Json ;
3
2
4
3
namespace DeepBotPointExtractor . Models
@@ -11,22 +10,22 @@ public class User
11
10
[ JsonProperty ( PropertyName = "points" ) ]
12
11
public decimal Points { get ; set ; }
13
12
14
- [ JsonProperty ( PropertyName = "watch_time" ) ]
15
- public decimal WatchTime { get ; set ; }
13
+ // [JsonProperty(PropertyName = "watch_time")]
14
+ // public decimal WatchTime {get;set;}
16
15
17
- [ JsonProperty ( PropertyName = "vip" ) ]
18
- public int Vip { get ; set ; }
16
+ // [JsonProperty(PropertyName = "vip")]
17
+ // public int Vip {get;set;}
19
18
20
- [ JsonProperty ( PropertyName = "mod" ) ]
21
- public int Mod { get ; set ; }
19
+ // [JsonProperty(PropertyName = "mod")]
20
+ // public int Mod {get;set;}
22
21
23
- [ JsonProperty ( PropertyName = "join_date" ) ]
24
- public DateTime JoinDate { get ; set ; }
22
+ // [JsonProperty(PropertyName = "join_date")]
23
+ // public DateTime JoinDate {get;set;}
25
24
26
- [ JsonProperty ( PropertyName = "last_seen" ) ]
27
- public DateTime LastSeen { get ; set ; }
25
+ // [JsonProperty(PropertyName = "last_seen")]
26
+ // public DateTime LastSeen {get;set;}
28
27
29
- [ JsonProperty ( PropertyName = "vip_expiry" ) ]
30
- public DateTime VipExpiry { get ; set ; }
28
+ // [JsonProperty(PropertyName = "vip_expiry")]
29
+ // public DateTime VipExpiry {get;set;}
31
30
}
32
31
}
0 commit comments