Files
Shogi/Shogi.UI/Pages/Home/Account/User.cs

13 lines
259 B
C#

namespace Shogi.UI.Pages.Home.Account
{
public class User
{
public string Id { get; set; }
public string DisplayName { get; set; }
public WhichAccountPlatform WhichAccountPlatform { get; set; }
public Guid OneTimeSocketToken { get; set; }
}
}