1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Media.Media3D;
- using SAGA.Models;
- namespace SAGA.Models
- {
- [TableName("VerticalPipes")]
- public class VerticalPipe
- {
- public string Id { get; set; }
- public Point3D UpPoint3D { get; set; }
- public Point3D DownPoint3D { get; set; }
- public double LevelElevation { get; set; }
- public string LevelName { get; set; }
- public string LevelId { get; set; }
- public Point CPoint { get; set; }
- public string PipeSytemType { get; set; }
- public string Display { get; set; }
- public string DisplayTip { get; set; }
- public string FloorId { get; set; }
- public string FloorName { get; set; }
- public string BuildingId { get; set; }
- public string BuildingName { get; set; }
- }
-
- public class LevelData
- {
- public string Id { get; set; }
- public double Elevation { get; set; }
- public string Name { get; set; }
- public string FloorId { get; set; }
- }
- }
|