10 lines
189 B
C#
10 lines
189 B
C#
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Types
|
|
{
|
|
public class User
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
}
|
|
}
|