13 lines
179 B
C#
13 lines
179 B
C#
namespace Gameboard.ShogiUI.Sockets.Models
|
|
{
|
|
public class Player
|
|
{
|
|
public string Name { get; }
|
|
|
|
public Player(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|