before deleting Rules
This commit is contained in:
@@ -6,8 +6,8 @@ namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Messages
|
||||
public class MoveRequest : IRequest
|
||||
{
|
||||
public ClientAction Action { get; set; }
|
||||
public string GameName { get; set; }
|
||||
public Move Move { get; set; }
|
||||
public string GameName { get; set; } = string.Empty;
|
||||
public Move Move { get; set; } = new Move();
|
||||
}
|
||||
|
||||
public class MoveResponse : IResponse
|
||||
@@ -21,6 +21,10 @@ namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Messages
|
||||
public MoveResponse(ClientAction action)
|
||||
{
|
||||
Action = action.ToString();
|
||||
Error = string.Empty;
|
||||
GameName = string.Empty;
|
||||
BoardState = new BoardState();
|
||||
PlayerName = string.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user