using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MoviconHub.App.Models { /// /// 设备故障数据模型 /// public class FaultDetails { /// ///错误代码, 无错误为空 /// [JsonProperty("Fault_Code")] public string Fault_Code { get; set; } /// /// 错误发生时间,无错误为空 /// [JsonProperty("Fault_Time")] public DateTime Fault_Time { get; set; } = DateTime.Now; /// /// 错误描述,无错误为空 /// [JsonProperty("Fault_Description")] public string Fault_Description { get; set; } } }