/* ============================================================================== * 功能描述:SagaCheckResult * 创 建 者:Garrett * 创建日期:2019/5/31 16:20:46 * ==============================================================================*/ using Newtonsoft.Json; namespace ServiceRevitLib.Mode { /// /// SagaCheckResult /// class SystemReferEquipCheckResult : ResultBase { /// /// id /// public string Id { get; set; } /// /// 族名称 /// public string FamilyName { get; set; } /// /// 合法的系统名称集合 /// public string PassSystems { get; set; } /// /// 不合法的系统名称集合 /// [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public string UnPassSystems { get; set; } } }