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