/* * GNU AFFERO GENERAL PUBLIC LICENSE * Version 3, 19 November 2007 * Copyright (C) 2007 Free Software Foundation, Inc. * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. */ namespace UVtools.Core.Scripting; public class ScriptNumericalInput : ScriptBaseInput { /// /// Gets the minimum for this input /// public T? Minimum { get; set; } /// /// Gets the minimum for this input /// public T? Maximum { get; set; } /// /// Gets the increment value for this /// public T? Increment { get; set; } /// /// Gets the number of decimal plates to round the value /// public byte DecimalPlates { get; set; } = 2; }