18 lines
456 B
C#
18 lines
456 B
C#
using Gameboard.ShogiUI.Sockets.ServiceModels.Types;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api
|
|
{
|
|
public class GetGameResponse
|
|
{
|
|
public Game Game { get; set; }
|
|
public WhichPlayer PlayerPerspective { get; set; }
|
|
public BoardState BoardState { get; set; }
|
|
public IList<Move> MoveHistory { get; set; }
|
|
}
|
|
}
|