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