12345678910111213141516171819202122232425262728293031323334 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using JBIM.Common;
- using JBIM.Definition;
- namespace JBIM.Component
- {
- [TypeDefiniton(TypeDefinition.JoinObject)]
- public class OtherJoinObject : VisibleComponentObject
- {
- public OtherJoinObject()
- {
- ConnectedIds = new List<BimId>();
- }
-
-
-
- public List<BimId> ConnectedIds { get; private set; }
-
-
-
- public double Rotation { get; set; }
- }
- }
|