Before changing Piece[,] to Dictionary<string,Piece>
This commit is contained in:
@@ -6,13 +6,13 @@ namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Messages
|
||||
public class JoinByCodeRequest : IRequest
|
||||
{
|
||||
public ClientAction Action { get; set; }
|
||||
public string JoinCode { get; set; }
|
||||
public string JoinCode { get; set; } = "";
|
||||
}
|
||||
|
||||
public class JoinGameRequest : IRequest
|
||||
{
|
||||
public ClientAction Action { get; set; }
|
||||
public string GameName { get; set; }
|
||||
public string GameName { get; set; } = "";
|
||||
}
|
||||
|
||||
public class JoinGameResponse : IResponse
|
||||
@@ -25,6 +25,9 @@ namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Messages
|
||||
public JoinGameResponse(ClientAction action)
|
||||
{
|
||||
Action = action.ToString();
|
||||
Error = "";
|
||||
GameName = "";
|
||||
PlayerName = "";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user