using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace AsbCloudApp.Data.ProcessMaps;
///
/// РТК план позиционирования над забоем
///
public class ProcessMapPlanOperationPositioningOffTheBottomDto : ProcessMapPlanBaseDto
{
///
/// Остановка над забоем, м
///
[Range(0.0, 30.0)]
public double StopOffTheBottom { get; set; }
}