-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
116 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace TwitchDownloaderCore.TwitchObjects | ||
{ | ||
public class Tier | ||
{ | ||
public int bits { get; set; } | ||
} | ||
|
||
public class CheerNode | ||
{ | ||
public string id { get; set; } | ||
public string prefix { get; set; } | ||
public List<Tier> tiers { get; set; } | ||
} | ||
|
||
public class CheerGroup | ||
{ | ||
public List<CheerNode> nodes { get; set; } | ||
public string templateURL { get; set; } | ||
} | ||
|
||
public class CheerConfig | ||
{ | ||
public List<CheerGroup> groups { get; set; } | ||
} | ||
|
||
public class Cheer | ||
{ | ||
public List<CheerGroup> cheerGroups { get; set; } | ||
} | ||
|
||
public class CheerUser | ||
{ | ||
public Cheer cheer { get; set; } | ||
} | ||
|
||
public class CheerData | ||
{ | ||
public CheerConfig cheerConfig { get; set; } | ||
public CheerUser user { get; set; } | ||
} | ||
|
||
public class GqlCheerResponse | ||
{ | ||
public CheerData data { get; set; } | ||
public Extensions extensions { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters