9 lines
170 B
C#
9 lines
170 B
C#
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Interfaces
|
|
{
|
|
public interface IResponse
|
|
{
|
|
string Action { get; }
|
|
string Error { get; set; }
|
|
}
|
|
}
|