before deleting Rules
This commit is contained in:
@@ -6,13 +6,13 @@ namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Messages
|
||||
public class CreateGameRequest : IRequest
|
||||
{
|
||||
public ClientAction Action { get; set; }
|
||||
public string GameName { get; set; }
|
||||
public string GameName { get; set; } = string.Empty;
|
||||
public bool IsPrivate { get; set; }
|
||||
}
|
||||
|
||||
public class CreateGameResponse : IResponse
|
||||
{
|
||||
public string Action { get; private set; }
|
||||
public string Action { get; }
|
||||
public string Error { get; set; }
|
||||
public Game Game { get; set; }
|
||||
public string PlayerName { get; set; }
|
||||
@@ -20,6 +20,9 @@ namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Messages
|
||||
public CreateGameResponse(ClientAction action)
|
||||
{
|
||||
Action = action.ToString();
|
||||
Error = string.Empty;
|
||||
Game = new Game();
|
||||
PlayerName = string.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user