using Shogi.Contracts.Types; namespace Shogi.Contracts.Socket; public class SessionCreatedSocketMessage : ISocketResponse { public SocketAction Action { get; } public SessionCreatedSocketMessage() { Action = SocketAction.SessionCreated; } }