forked from ddrilling/AsbCloudServer
27 lines
680 B
C#
27 lines
680 B
C#
namespace AsbCloudApp.Data.AutogeneratedDailyReport;
|
|
|
|
/// <summary>
|
|
/// Блок ограничивающих параметров
|
|
/// </summary>
|
|
public class LimitingParameterRecordDto
|
|
{
|
|
/// <summary>
|
|
/// Время использования, мин
|
|
/// </summary>
|
|
public double Hours { get; set; }
|
|
|
|
/// <summary>
|
|
/// Проходка, м
|
|
/// </summary>
|
|
public double Depth { get; set; }
|
|
|
|
/// <summary>
|
|
/// Название ограничивающего параметра
|
|
/// </summary>
|
|
public string NameFeedRegulator { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Процент по проходке, %
|
|
/// </summary>
|
|
public double PercentDepth { get; set; }
|
|
} |