using System.ComponentModel.DataAnnotations;
namespace AsbCloudApp.Data.ProcessMaps;
///
/// РТК план демпфер
///
public class ProcessMapPlanFunctionsDamperDto : ProcessMapPlanBaseDto
{
///
/// StickSlip
///
[Range(0.0, 1000.0)]
public double StickSlip { get; set; }
///
/// Примечание
///
[StringLength(1024)]
public string Note { get; set; } = string.Empty;
}