123456789101112131415161718192021222324252627282930313233343536373839 |
-
- using JBIM.Common;
- using JBIM.Definition;
- namespace RevitToJBim.ParseData
- {
- public class ElementRelationShip
- {
- public ElementRelationShip()
- {
- IsProperty = true;
- RelatingObjectIsBimId = false;
- }
- public bool RelatingObjectIsBimId { get; set; }
-
-
-
- public string RelatingObject { get; set; }
-
-
-
- public bool IsProperty { get; set; }
- public void SetPropertyName(string propertyName)
- {
- PropertyName = propertyName;
- }
- public void SetElementType(TypeDefinition type)
- {
- PropertyName = type.GetDescription();
- }
- public string PropertyName { get; private set; }
- }
- }
|