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