12345678910111213141516171819202122232425262728293031323334353637 |
-
- using Newtonsoft.Json;
- namespace ServiceRevitLib.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; }
- }
- }
|