Files
Shogi/Shogi.Contracts/Socket/ISocketRequest.cs

10 lines
145 B
C#

using Shogi.Contracts.Types;
namespace Shogi.Contracts.Socket
{
public interface ISocketRequest
{
SocketAction Action { get; }
}
}