Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Api/GetSession.cs
2021-11-10 18:46:29 -06:00

14 lines
377 B
C#

using Gameboard.ShogiUI.Sockets.ServiceModels.Types;
using System.Collections.Generic;
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api
{
public class GetSessionResponse
{
public Game Game { get; set; }
public WhichPlayer PlayerPerspective { get; set; }
public BoardState BoardState { get; set; }
public IList<Move> MoveHistory { get; set; }
}
}