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