forked from ddrilling/AsbCloudServer
16 lines
494 B
C#
16 lines
494 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data.ProcessMaps;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// РТК план позиционирования над забоем
|
|||
|
/// </summary>
|
|||
|
public class ProcessMapPlanOperationPositioningOffTheBottomDto : ProcessMapPlanBaseDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Остановка над забоем, м
|
|||
|
/// </summary>
|
|||
|
[Range(0.0, 30.0)]
|
|||
|
public double StopOffTheBottom { get; set; }
|
|||
|
}
|