using Shogi.Contracts.Types; namespace Shogi.Contracts.Socket; public class SessionJoinedByPlayerSocketMessage : ISocketResponse { public SocketAction Action => SocketAction.SessionJoined; public string SessionName { get; } public SessionJoinedByPlayerSocketMessage(string sessionName) { SessionName = sessionName; } }