123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
-
- 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.Duct)]
- public class Duct:VisibleComponentObject
- {
- public Duct()
- {
- ConnectedIds = new List<BimId>();
- }
-
-
-
-
-
-
-
- public string MepSystemTypeName { get; set; }
-
-
-
- public List<BimId> ConnectedIds { get; private set; }
-
-
-
- public DuctShape Shape { get; set; }
-
-
-
- public double Diameter { get; set; }
-
-
-
- public double Width { get; set; }
-
-
-
- public double Height { get; set; }
- }
- }
|