13 lines
259 B
C#
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; }
|
|
}
|
|
}
|