namespaces and guest game invitations

This commit is contained in:
2021-01-25 20:41:14 -06:00
parent 495fb288e1
commit 1352d75c6a
38 changed files with 262 additions and 208 deletions

View File

@@ -1,11 +1,11 @@
using Websockets.ServiceModels.Interfaces;
using Websockets.ServiceModels.Types;
using Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Interfaces;
using Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Types;
namespace AspShogiSockets.Managers.Utility
namespace Gameboard.ShogiUI.Sockets.Managers.Utility
{
public class Request : IRequest
{
public ClientAction Action { get; set; }
public string PlayerName { get; set; }
}
public class Request : IRequest
{
public ClientAction Action { get; set; }
public string PlayerName { get; set; }
}
}