using System.Linq;
namespace AsbCloudApp.Data;
///
/// DTO параметров бурения
///
public class DrillParamsDto : IId, IWellRelated
{
///
public int Id { get; set; }
///
public int IdWell { get; set; }
///
/// Глубина интервала
///
public MinMaxDto Depth { get; set; } = null!;
///
/// id well section type.
///
public int IdWellSectionType { get; set; }
///
/// axial load
///
public MinMaxExtendedViewDto AxialLoad { get; set; } = null!;
///
/// pressure
///
public MinMaxExtendedViewDto Pressure { get; set; } = null!;
///
/// rotor torque
///
public MinMaxExtendedViewDto RotorTorque { get; set; } = null!;
///
/// rotor speed
///
public MinMaxExtendedViewDto RotorSpeed { get; set; } = null!;
///
/// flow
///
public MinMaxExtendedViewDto Flow { get; set; } = null!;
}