hermes-client/TwitchChatTTS/Hermes/TwitchBotToken.cs

8 lines
262 B
C#
Raw Normal View History

2023-12-30 04:27:31 -05:00
[Serializable]
public class TwitchBotToken {
public string client_id { get; set; }
public string client_secret { get; set; }
public string access_token { get; set; }
public string refresh_token { get; set; }
public string broadcaster_id { get; set; }
}