mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
33 lines
812 B
C#
33 lines
812 B
C#
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.ComponentModel;
|
|
|
|
namespace MewtocolNet.Registers {
|
|
|
|
/// <summary>
|
|
/// The formatted result of a ascii command
|
|
/// </summary>
|
|
public struct CommandResult {
|
|
|
|
/// <summary>
|
|
/// Success state of the message
|
|
/// </summary>
|
|
public bool Success {get;set;}
|
|
/// <summary>
|
|
/// Response text of the message
|
|
/// </summary>
|
|
public string Response {get;set;}
|
|
/// <summary>
|
|
/// Error code of the message
|
|
/// </summary>
|
|
public string Error {get;set;}
|
|
/// <summary>
|
|
/// Error text of the message
|
|
/// </summary>
|
|
public string ErrorDescription {get;set;}
|
|
|
|
}
|
|
|
|
} |