Room.cs 598 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using JBIM.Common;
  7. using JBIM.Definition;
  8. namespace JBIM.Component
  9. {
  10. [TypeDefiniton(TypeDefinition.Room)]
  11. public class Room : VisibleComponentObject
  12. {
  13. public Room()
  14. {
  15. BoundarySegments = new List<List<BimId>>();
  16. OutLine2=new List<Polygon>();
  17. }
  18. public List<List<BimId>> BoundarySegments { get; private set; }
  19. public double Height { get; set; }
  20. public List<Polygon> OutLine2 { get; set; }
  21. }
  22. }