DD.WellWorkover.Cloud/AsbCloudDb/Model/TelemetryInfo.cs
Фролов 962d6e15b6 Fix spelling for defaults.
Replace DateTime to DateTimeOffset in models
2021-12-30 10:45:06 +05:00

20 lines
629 B
C#

using System;
namespace AsbCloudDb.Model
{
public class TelemetryInfo
{
public DateTimeOffset DrillingStartDate { get; set; }
public string TimeZoneId { get; set; }
public double TimeZoneOffsetTotalHours { get; set; }
public string Well { get; set; }
public string Cluster { get; set; }
public string Customer { get; set; }
public string Deposit { get; set; }
public string HmiVersion { get; set; }
public string SaubPlcVersion { get; set; }
public string SpinPlcVersion { get; set; }
public string Comment { get; set; }
}
}