DD.WellWorkover.Cloud/AsbCloudApp/Data/TelemetryInfoDto.cs
2021-10-13 17:15:00 +05:00

20 lines
626 B
C#

using System;
namespace AsbCloudApp.Data
{
public class TelemetryInfoDto
{
public DateTime 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; }
}
}