sledgemapper/Sledgemapper.Shared/Entities/Player.cs
2021-02-21 22:59:43 +00:00

12 lines
295 B
C#

namespace Sledgemapper.Shared.Entities
{
public class Player
{
public int UserId { get; set; }
public string Color { get; set; }
public string UserName { get; set; }
public string Initials { get; set; }
public Tile Position { get; set; }
}
}