12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- using JBIM.Common;
- using JBIM.Definition;
- namespace JBIM.Relationship
- {
-
-
-
-
- [TypeDefiniton(TypeDefinition.Relationship)]
- public class RelationshipBase: BimObject
- {
- public RelationshipBase()
- {
-
- }
- public void SetElementType(TypeDefinition type)
- {
- this.ElementType =TypeDefinitonUtil.GetTypeDefiniton(type);
- }
-
-
-
- public BimId RelatingObject { get; set; }
- }
- }
|