using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace AsbCloudApp.Data.ProcessMaps; /// /// РТК план выработка нагрузки /// public class ProcessMapPlanOperationLoadCapacityDto : ProcessMapPlanBaseDto { /// /// Время выработки минимальное, сек /// [Range(0.0, 800.0)] public double TimeLoadCapacityMin { get; set; } /// /// Перепад давления минимальный, атм /// [Range(0.1, 400.0)] public double DifferentialPressureMin { get; set; } /// /// Нагрузка минимальная, т /// [Range(0.1, 99.0)] public double WeightOnBitMin { get; set; } /// /// Примечание /// [StringLength(1024)] public string Note { get; set; } = string.Empty; }