Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Socket/Interfaces/IResponse.cs
2020-12-13 14:31:23 -06:00

9 lines
162 B
C#

namespace Websockets.ServiceModels.Interfaces
{
public interface IResponse
{
string Action { get; }
string Error { get; set; }
}
}