All the code

This commit is contained in:
2020-12-13 14:31:23 -06:00
parent 9c3d67a07e
commit 1bbab8fe8f
49 changed files with 1878 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using Websockets.ServiceModels.Types;
namespace Websockets.ServiceModels.Interfaces
{
public interface IRequest
{
ClientAction Action { get; set; }
}
}

View File

@@ -0,0 +1,8 @@
namespace Websockets.ServiceModels.Interfaces
{
public interface IResponse
{
string Action { get; }
string Error { get; set; }
}
}