12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
-
- 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.Connector)]
- public class Connector:ComponentObject
- {
- public Connector()
- {
- ConnectedIds = new List<BimId>();
- }
-
-
-
- public string Domain { get; set; }
-
-
-
- public XYZ Origin { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public bool IsConnected { get; set; }
-
-
-
- public BimId Owner { get; set; }
-
-
-
- public List<BimId> ConnectedIds { get;private set; }
-
-
-
-
-
-
-
- public string MepSystemTypeName { get; set; }
- }
- }
|