11 lines
252 B
C#
11 lines
252 B
C#
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; }
|
|
}
|
|
}
|