DD.WellWorkover.Cloud/AsbCloudApp/Data/TelemetryMessageDto.cs
Фролов 86e929d920 comment
2021-09-23 17:58:56 +05:00

21 lines
613 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace AsbCloudApp.Data
{
/// <summary>
/// Сообщение получаемое от телеметрии с буровой
/// </summary>
public class TelemetryMessageDto : IId
{
public int Id { get; set; }
public DateTime Date { get; set; }
public double WellDepth { get; set; }
public int IdEvent { get; set; }
public int? IdTelemetryUser { get; set; }
public string Arg0 { get; set; }
public string Arg1 { get; set; }
public string Arg2 { get; set; }
public string Arg3 { get; set; }
}
}