14 lines
311 B
C#
14 lines
311 B
C#
using System;
|
|
|
|
namespace Sledgemapper.Shared.Entities
|
|
{
|
|
public class Player
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public string Color { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Initials { get; set; }
|
|
|
|
public Tile Position { get; set; }
|
|
}
|
|
}
|