DD.WellWorkover.Cloud/AsbCloudDb/Model/TelemetryInfo.cs

19 lines
568 B
C#
Raw Normal View History

2021-04-23 10:21:25 +05:00
using System;
namespace AsbCloudDb.Model
{
public class TelemetryInfo
{
public DateTime DrillingStartDate { get; set; }
2021-04-23 10:21:25 +05:00
public string TimeZoneId { get; set; }
public double TimeZoneOffsetTotalHours { get; set; }
public string Well { get; set; }
2021-04-23 10:21:25 +05:00
public string Cluster { get; set; }
public string Customer { get; set; }
2021-04-23 10:21:25 +05:00
public string Deposit { get; set; }
public string HmiVersion { get; set; }
public string PlcVersion { get; set; }
public string Comment { get; set; }
}
}