11 lines
250 B
C#
11 lines
250 B
C#
namespace Sledgemapper.Shared.Entities
|
|
{
|
|
public class Player
|
|
{
|
|
public int UserId { get; set; }
|
|
public string Color { get; set; }
|
|
public string Initials { get; set; }
|
|
|
|
public Tile Position { get; set; }
|
|
}
|
|
}
|