123456789101112131415161718192021222324252627282930313233343536 |
-
- using Newtonsoft.Json;
- using ServiceRevitLib.Mode;
- namespace ServiceRevitLib.DataCheck.Mode
- {
-
-
-
- class ElementRangeCheckResult : ResultBase
- {
-
-
-
- public string Id { get; set; }
-
-
-
- [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
- public string FamilyName { get; set; }
-
-
-
- public string Type { get; set; }
-
-
-
- public string HeightRange { get; set; }
- }
- }
|