10 lines
195 B
C#
10 lines
195 B
C#
namespace Shogi.UI.Pages.Home.Account
|
|
{
|
|
public readonly record struct User(
|
|
string Id,
|
|
string DisplayName,
|
|
WhichAccountPlatform WhichAccountPlatform)
|
|
{
|
|
}
|
|
}
|