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