mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
27 lines
674 B
C#
27 lines
674 B
C#
namespace MewtocolNet {
|
|
|
|
/// <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; }
|
|
|
|
}
|
|
|
|
} |