Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Socket/IResponse.cs
2021-08-01 17:32:43 -05:00

9 lines
159 B
C#

namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket
{
public interface IResponse
{
string Action { get; }
string Error { get; set; }
}
}