using Shogi.Contracts.Types; namespace Shogi.Contracts.Socket; public class PlayerHasMovedMessage : ISocketResponse { public SocketAction Action { get; } public string SessionName { get; set; } /// /// The player that made the move. /// public string PlayerName { get; set; } public PlayerHasMovedMessage() { Action = SocketAction.PieceMoved; } }