Before changing Piece[,] to Dictionary<string,Piece>
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Interfaces;
|
||||
using Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Types;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Messages
|
||||
{
|
||||
@@ -13,11 +14,13 @@ namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Messages
|
||||
{
|
||||
public string Action { get; }
|
||||
public string Error { get; set; }
|
||||
public ICollection<Game> Games { get; set; }
|
||||
public IReadOnlyList<Game> Games { get; set; }
|
||||
|
||||
public ListGamesResponse(ClientAction action)
|
||||
{
|
||||
Action = action.ToString();
|
||||
Error = "";
|
||||
Games = new Collection<Game>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user