10 lines
145 B
C#
10 lines
145 B
C#
using Shogi.Contracts.Types;
|
|
|
|
namespace Shogi.Contracts.Socket
|
|
{
|
|
public interface ISocketRequest
|
|
{
|
|
SocketAction Action { get; }
|
|
}
|
|
}
|