yep
This commit is contained in:
25
Gameboard.ShogiUI.Sockets.ServiceModels/Socket/ListGames.cs
Normal file
25
Gameboard.ShogiUI.Sockets.ServiceModels/Socket/ListGames.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using Gameboard.ShogiUI.Sockets.ServiceModels.Types;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket
|
||||
{
|
||||
public class ListGamesRequest : IRequest
|
||||
{
|
||||
public ClientAction Action { get; set; }
|
||||
}
|
||||
|
||||
public class ListGamesResponse : IResponse
|
||||
{
|
||||
public string Action { get; }
|
||||
public string Error { get; set; }
|
||||
public IReadOnlyList<Game> Games { get; set; }
|
||||
|
||||
public ListGamesResponse()
|
||||
{
|
||||
Action = ClientAction.ListGames.ToString();
|
||||
Error = "";
|
||||
Games = new Collection<Game>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user