Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Socket/Move.cs
2021-09-03 22:43:06 -05:00

20 lines
519 B
C#

using Gameboard.ShogiUI.Sockets.ServiceModels.Types;
using System.Collections.Generic;
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket
{
public class MoveResponse : IResponse
{
public string Action { get; protected set; }
public Game Game { get; set; }
public WhichPlayer PlayerPerspective { get; set; }
public BoardState BoardState { get; set; }
public IList<Move> MoveHistory { get; set; }
public MoveResponse()
{
Action = ClientAction.Move.ToString();
}
}
}