11 lines
290 B
C#
11 lines
290 B
C#
namespace Shogi.Contracts.Types;
|
|
|
|
public class Session
|
|
{
|
|
public string Player1 { get; set; } = string.Empty;
|
|
public string? Player2 { get; set; }
|
|
public string SessionName { get; set; } = string.Empty;
|
|
public bool GameOver { get; set; }
|
|
public BoardState BoardState { get; set; }
|
|
}
|