Files
hermes-client/TwitchChatTTS/Hermes/Account.cs
2023-12-30 09:28:16 +00:00

9 lines
179 B
C#

using System.Diagnostics.CodeAnalysis;
[Serializable]
public class Account {
[AllowNull]
public string id { get; set; }
[AllowNull]
public string username { get; set; }
}