using System.ComponentModel.DataAnnotations;
namespace AsbCloudApp.Data.ProcessMaps;
///
/// РТК план автоудержание
///
public class ProcessMapPlanFunctionsAutoHoldDto : ProcessMapPlanBaseDto
{
///
/// Зенитный угол, градусы
///
[Range(0.0, 100.0)]
public double ZenithAngle { get; set; }
///
/// Примечание
///
[StringLength(1024)]
public string Note { get; set; } = string.Empty;
}