sledgemapper/Sledgemapper.Shared/Entities/Player.cs
Michele Scandura f12132009f
All checks were successful
continuous-integration/drone/push Build is passing
Send position and overlay
2021-09-17 12:37:02 +01:00

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