using Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Interfaces; using Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Types; namespace Gameboard.ShogiUI.Sockets.ServiceModels.Socket.Messages { public class ErrorResponse : IResponse { public string Action { get; private set; } public string Error { get; set; } public ErrorResponse(ClientAction action) { Action = action.ToString(); } } }