/* ============================================================================== * 功能描述: * 创 建 者:Garrett * 创建日期:2019/5/31 16:24:04 * ==============================================================================*/ using Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace ServiceRevitLib.Mode { /// /// CheckResultBase /// public class ResultBase { public ResultBase() { Result = ResultState.Success; } /// /// 成功或失败结果描述 /// [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public string ResultMsg { get; set; } /// /// 结果 /// [JsonConverter(typeof(StringEnumConverter))] public ResultState Result { get; set; } } }