forked from ddrilling/AsbCloudServer
38 lines
972 B
C#
38 lines
972 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
#nullable enable
|
|||
|
/// <summary>
|
|||
|
/// Статистика по ограничивающим параметрам
|
|||
|
/// </summary>
|
|||
|
public class LimitingParameterDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Идентификатор скважины
|
|||
|
/// </summary>
|
|||
|
public int IdWell { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Время бурения
|
|||
|
/// </summary>
|
|||
|
public float TimeMinutes { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Глубина бурения
|
|||
|
/// </summary>
|
|||
|
public float Depth { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Количество включений
|
|||
|
/// </summary>
|
|||
|
public int NumberInclusions { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Идентификатор критерия бурения
|
|||
|
/// </summary>
|
|||
|
public short IdFeedRegulator { get; set; }
|
|||
|
}
|
|||
|
#nullable disable
|
|||
|
}
|