Files
MewtocolNet/MewtocolNet/Responses.cs
Felix Weiß 88ad175145 Restructured files
- householding
2023-06-23 15:40:34 +02:00

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; }
}
}