14 lines
230 B
C#
14 lines
230 B
C#
using Shogi.Contracts.Types;
|
|
|
|
namespace Shogi.Contracts.Socket;
|
|
|
|
public interface ISocketResponse
|
|
{
|
|
SocketAction Action { get; }
|
|
}
|
|
|
|
public class SocketResponse : ISocketResponse
|
|
{
|
|
public SocketAction Action { get; set; }
|
|
}
|