hermes-client/TwitchChatTTS/Hermes/Account.cs

9 lines
179 B
C#
Raw Normal View History

2023-12-30 04:27:31 -05:00
using System.Diagnostics.CodeAnalysis;
[Serializable]
public class Account {
[AllowNull]
public string id { get; set; }
[AllowNull]
public string username { get; set; }
}