namespace Gameboard.ShogiUI.Sockets.ServiceModels.Types { public class Session { public string Player1 { get; set; } public string? Player2 { get; set; } public string GameName { get; set; } public BoardState BoardState { get; set; } } }