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

21 lines
732 B
C#
Raw Normal View History

using System;
2021-04-23 10:21:25 +05:00
namespace AsbCloudDb.Model
{
public class TelemetryInfo
{
public DateTimeOffset DrillingStartDate { get; set; }
2023-02-20 15:06:26 +05:00
public string? TimeZoneId { get; set; }
2021-04-23 10:21:25 +05:00
public double TimeZoneOffsetTotalHours { get; set; }
2023-02-20 15:06:26 +05:00
public string Well { get; set; } = string.Empty;
public string Cluster { get; set; } = string.Empty;
public string Deposit { get; set; } = string.Empty;
public string? Customer { get; set; }
public string? HmiVersion { get; set; }
public string? SaubPlcVersion { get; set; }
public string? SpinPlcVersion { get; set; }
public string? PumpPlcVersion { get; set; }
2023-02-20 15:06:26 +05:00
public string? Comment { get; set; }
2021-04-23 10:21:25 +05:00
}
}