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

18 lines
516 B
C#
Raw Normal View History

2021-04-07 18:01:56 +05:00
using System;
namespace AsbCloudApp.Data
{
public class TelemetryInfoDto
{
public DateTime Date { get; set; }
2021-04-23 10:21:25 +05:00
public string TimeZoneId { get; set; }
public double TimeZoneOffsetTotalHours { get; set; }
2021-04-07 18:01:56 +05:00
public string Caption { get; set; }
public string Cluster { get; set; }
public string Deposit { get; set; }
2021-04-23 10:21:25 +05:00
public string HmiVersion { get; set; }
public string PlcVersion { get; set; }
public string Comment { get; set; }
2021-04-07 18:01:56 +05:00
}
}