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