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