DD.WellWorkover.Cloud/AsbCloudApp/Data/TelemetryInfoDto.cs

20 lines
626 B
C#
Raw Normal View History

2021-04-07 18:01:56 +05:00
using System;
namespace AsbCloudApp.Data
{
public class TelemetryInfoDto
{
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-07 18:01:56 +05:00
public string Cluster { get; set; }
public string Customer { get; set; }
2021-04-07 18:01:56 +05:00
public string Deposit { get; set; }
2021-04-23 10:21:25 +05:00
public string HmiVersion { get; set; }
2021-10-13 17:15:00 +05:00
public string SaubPlcVersion { get; set; }
public string SpinPlcVersion { get; set; }
2021-04-23 10:21:25 +05:00
public string Comment { get; set; }
2021-04-07 18:01:56 +05:00
}
}