forked from zerratar/Ravenfall-Legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TwitchSubscription.cs
39 lines (36 loc) · 884 Bytes
/
TwitchSubscription.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
public class TwitchCheer
{
public string UserId { get; }
public string UserName { get; }
public string DisplayName { get; }
public int Bits { get; }
public TwitchCheer(
string userId,
string userName,
string displayName,
int bits)
{
UserId = userId;
UserName = userName;
DisplayName = displayName;
Bits = bits;
}
}
public class TwitchSubscription
{
public string UserId { get; }
public string UserName { get; }
public string DisplayName { get; }
public int Months { get; }
public bool IsNew { get; }
public TwitchSubscription(
string userId, string userName, string displayName, int months, bool isNew)
{
UserName = userName;
UserId = userId;
DisplayName = displayName;
Months = months;
IsNew = isNew;
}
}