using System.ComponentModel; using umbraco.cms.businesslogic.datatype; namespace umbraco.editorControls.MultipleTextstring { /// /// The options for the Multiple Textstring data-type. /// public class MultipleTextstringOptions : AbstractOptions { /// /// Initializes a new instance of the class. /// public MultipleTextstringOptions() { } /// /// Initializes a new instance of the class. /// /// if set to true [load defaults]. public MultipleTextstringOptions(bool loadDefaults) : base(loadDefaults) { } /// /// Gets or sets the maximum. /// /// The maximum. [DefaultValue(-1)] public int Maximum { get; set; } /// /// Gets or sets the minimum. /// /// The minimum. [DefaultValue(1)] public int Minimum { get; set; } } }