10 lines
187 B
C#
10 lines
187 B
C#
using Gameboard.ShogiUI.Sockets.ServiceModels.Types;
|
|
|
|
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket
|
|
{
|
|
public interface IRequest
|
|
{
|
|
ClientAction Action { get; }
|
|
}
|
|
}
|