yep
This commit is contained in:
26
Gameboard.ShogiUI.Sockets.ServiceModels/Socket/LoadGame.cs
Normal file
26
Gameboard.ShogiUI.Sockets.ServiceModels/Socket/LoadGame.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using Gameboard.ShogiUI.Sockets.ServiceModels.Types;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket
|
||||
{
|
||||
public class LoadGameRequest : IRequest
|
||||
{
|
||||
public ClientAction Action { get; set; }
|
||||
public string GameName { get; set; } = "";
|
||||
}
|
||||
|
||||
public class LoadGameResponse : IResponse
|
||||
{
|
||||
public string Action { get; }
|
||||
public Game Game { get; set; }
|
||||
public WhichPlayer PlayerPerspective { get; set; }
|
||||
public BoardState BoardState { get; set; }
|
||||
public IList<Move> MoveHistory { get; set; }
|
||||
public string Error { get; set; }
|
||||
|
||||
public LoadGameResponse()
|
||||
{
|
||||
Action = ClientAction.LoadGame.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user