17 lines
479 B
C#
17 lines
479 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; }
|
|
/// <summary>
|
|
/// The perspective on the game of the requesting user.
|
|
/// </summary>
|
|
public WhichPerspective PlayerPerspective { get; set; }
|
|
public BoardState BoardState { get; set; }
|
|
public IList<Move> MoveHistory { get; set; }
|
|
}
|
|
}
|