1234567891011121314151617181920212223242526272829303132333435363738 |
-
- using Newtonsoft.Json;
- using ServiceRevitLib.Mode;
- namespace ServiceRevitLib.DataCheck.Mode
- {
-
-
-
- class SystemReferEquipCheckResult : ResultBase
- {
-
-
-
- public string Id { get; set; }
-
-
-
- public string FamilyName { get; set; }
-
-
-
- public string PassSystems { get; set; }
-
-
-
- [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
- public string UnPassSystems { get; set; }
- }
- }
|