Files
Shogi/Shogi.Contracts/Socket/ISocketMessage.cs
2023-02-01 22:49:28 -06:00

14 lines
228 B
C#

using Shogi.Contracts.Types;
namespace Shogi.Contracts.Socket;
public interface ISocketMessage
{
SocketAction Action { get; }
}
public class SocketResponse : ISocketMessage
{
public SocketAction Action { get; set; }
}