using System;
using System.ComponentModel;
using umbraco.cms.businesslogic.datatype;
namespace umbraco.editorControls.MultipleTextstring
{
///
/// The options for the Multiple Textstring data-type.
///
[Obsolete("IDataType and all other references to the legacy property editors are no longer used this will be removed from the codebase in future versions")]
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; }
}
}