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