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; } } }