namespace axXez.TS3.Bot
{
///
/// Represents the result of a command execution.
///
public class CommandResponse
{
/// Whether the command completed successfully.
public bool Success { get; }
/// The error reason shown to the invoker when is false. Always null on success.
public string Message { get; }
internal CommandResponse(bool success, string message = null)
{
Success = success;
Message = message;
}
}
}