Created
August 23, 2019 00:08
-
-
Save Clancey/02e7c54289658d2b38818d5bb43c09cb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
public class Links | |
{ | |
} | |
public class Chatters | |
{ | |
[JsonProperty("broadcaster")] | |
public IList<string> Broadcaster { get; set; } | |
[JsonProperty("vips")] | |
public IList<object> Vips { get; set; } | |
[JsonProperty("moderators")] | |
public IList<string> Moderators { get; set; } | |
[JsonProperty("staff")] | |
public IList<object> Staff { get; set; } | |
[JsonProperty("admins")] | |
public IList<object> Admins { get; set; } | |
[JsonProperty("global_mods")] | |
public IList<object> GlobalMods { get; set; } | |
[JsonProperty("viewers")] | |
public IList<string> Viewers { get; set; } | |
} | |
public class ChatData | |
{ | |
[JsonProperty("_links")] | |
public Links Links { get; set; } | |
[JsonProperty("chatter_count")] | |
public int ChatterCount { get; set; } | |
[JsonProperty("chatters")] | |
public Chatters Chatters { get; set; } | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment