hermes-client/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; }
2023-12-30 04:27:31 -05:00
[AllowNull]
public string Username { get; set; }
2023-12-30 04:27:31 -05:00
}