Files
Shogi/Shogi.UI/Pages/Home/Account/User.cs
2023-01-28 13:21:47 -06:00

10 lines
195 B
C#

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