VerticalPipe.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Media.Media3D;
  8. using SAGA.Models;
  9. namespace SAGA.Models
  10. {
  11. [TableName("VerticalPipes")]
  12. public class VerticalPipe
  13. {
  14. public string Id { get; set; }
  15. public Point3D UpPoint3D { get; set; }
  16. public Point3D DownPoint3D { get; set; }
  17. public double LevelElevation { get; set; }
  18. public string LevelName { get; set; }
  19. public string LevelId { get; set; }
  20. public Point CPoint { get; set; }
  21. public string PipeSytemType { get; set; }
  22. public string Display { get; set; }
  23. public string DisplayTip { get; set; }
  24. public string FloorId { get; set; }
  25. public string FloorName { get; set; }
  26. public string BuildingId { get; set; }
  27. public string BuildingName { get; set; }
  28. }
  29. public class LevelData
  30. {
  31. public string Id { get; set; }
  32. public double Elevation { get; set; }
  33. public string Name { get; set; }
  34. public string FloorId { get; set; }
  35. }
  36. }