RobotError.cs 612 Bytes
namespace Rcs.Application.DTOs
{
    /// <summary>
    /// 机器人错误信息
    /// @author zzy
    /// </summary>
    public class RobotError
    {
        /// <summary>
        /// 错误类型
        /// </summary>
        public string ErrorType { get; set; } = string.Empty;

        /// <summary>
        /// 错误级别:1=信息,2=警告,3=错误,4=严重
        /// </summary>
        public string ErrorLevel { get; set; } = string.Empty;

        /// <summary>
        /// 错误描述
        /// </summary>
        public string ErrorDescription { get; set; } = string.Empty;
    }
}