Files
MewtocolNet/MewtocolNet/Mewtocol/Responses.cs
Felix Weiß ba48d97c2b Added missing async write methods
- refactoring
2022-06-20 17:09:48 +02:00

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