hermes-client/Hermes/TwitchBotToken.cs

8 lines
262 B
C#
Raw Normal View History

[Serializable]
public class TwitchBotToken {
public string? ClientId { get; set; }
public string? ClientSecret { get; set; }
public string? AccessToken { get; set; }
public string? RefreshToken { get; set; }
public string? BroadcasterId { get; set; }
}