2021-08-04 14:22:00 +05:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
2021-08-02 18:35:36 +05:00
|
|
|
|
{
|
|
|
|
|
public class NnbDataDto
|
|
|
|
|
{
|
2021-08-03 17:55:28 +05:00
|
|
|
|
public int Key { get; set; }
|
2021-08-04 14:22:00 +05:00
|
|
|
|
public DateTime LastUpdate { get; set; } = DateTime.Now;
|
2021-08-02 18:35:36 +05:00
|
|
|
|
public double Depth { get; set; }
|
|
|
|
|
public double ZenithAngle { get; set; }
|
2021-08-04 14:22:00 +05:00
|
|
|
|
public double MagneticAzimuth { get; set; }
|
2021-08-02 18:35:36 +05:00
|
|
|
|
public double TrueAzimuth { get; set; }
|
|
|
|
|
public double ConditionalViscosity { get; set; }
|
|
|
|
|
public double DirectAzimuth { get; set; }
|
|
|
|
|
public double VerticalDepth { get; set; }
|
|
|
|
|
public double AbsoluteMark { get; set; }
|
|
|
|
|
public double LocalNorthOffset { get; set; }
|
|
|
|
|
public double LocalEastOffset { get; set; }
|
|
|
|
|
public double OutFallOffset { get; set; }
|
|
|
|
|
public double OffsetAzimuth { get; set; }
|
|
|
|
|
public double AreaIntensity { get; set; }
|
|
|
|
|
public double OffsetStopAngle { get; set; }
|
|
|
|
|
public double ZenithIntensity { get; set; }
|
|
|
|
|
public double Comment { get; set; }
|
|
|
|
|
public double DepthPlanFactDifference { get; set; }
|
|
|
|
|
public double DistancePlanFactDifference { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|