twitch-agent/TwitchEventSub/Types/Offline/ChannelUpdate.cs
Adam R. Grey 3f717df1d4 psuedoinitial
actually I had a previous repo but my dumb ass let the real appsettings sneak in
2021-10-24 01:13:07 -04:00

14 lines
723 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace TwitchEventSub.Types.Offline
{
public class ChannelUpdate : Event
{
public string broadcaster_user_id { get; set; } //The broadcasters user ID.
public string broadcaster_user_login { get; set; } //The broadcasters user login.
public string broadcaster_user_name { get; set; } //The broadcasters user display name.
public string title { get; set; } //The channels stream title.
public string language { get; set; } //The channels broadcast language.
public string category_id { get; set; } //The channels category ID.
public string category_name { get; set; } //The category name.
public bool is_mature { get; set; }
}
}