forked from ddrilling/AsbCloudServer
21 lines
494 B
C#
21 lines
494 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data.ProcessMaps;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// РТК план демпфер
|
|||
|
/// </summary>
|
|||
|
public class ProcessMapPlanFunctionsDamperDto : ProcessMapPlanBaseDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// StickSlip
|
|||
|
/// </summary>
|
|||
|
[Range(0.0, 1000.0)]
|
|||
|
public double StickSlip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Примечание
|
|||
|
/// </summary>
|
|||
|
[StringLength(1024)]
|
|||
|
public string Note { get; set; } = string.Empty;
|
|||
|
}
|