using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace AsbCloudApp.Data.ProcessMaps; /// /// РТК план выход статического замера /// public class ProcessMapPlanFunctionsStaticMeasureDto : ProcessMapPlanBaseDto { /// /// Время ожидания выхода сигнала с ТМС, сек. /// [Range(0.0, 1800.0)] public double SignalWaitingTime { get; set; } }