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

11 lines
228 B
C#

namespace Shogi.UI.Pages.Home.Account
{
public readonly record struct User(
string Id,
string DisplayName,
WhichAccountPlatform WhichAccountPlatform,
Guid OneTimeSocketToken)
{
}
}