forked from ddrilling/AsbCloudServer
20 lines
680 B
C#
20 lines
680 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; } = 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? Comment { get; set; }
|
|
}
|
|
}
|