2018-01-24 13:37:14 +01:00
|
|
|
|
namespace Umbraco.Web.PropertyEditors
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2018-05-20 18:14:31 +01:00
|
|
|
|
/// Represents the configuration for a multiple textstring value editor.
|
2018-01-24 13:37:14 +01:00
|
|
|
|
/// </summary>
|
2018-05-20 18:14:31 +01:00
|
|
|
|
public class MultipleTextStringConfiguration
|
2018-01-24 13:37:14 +01:00
|
|
|
|
{
|
|
|
|
|
|
// fields are configured in the editor
|
|
|
|
|
|
|
|
|
|
|
|
public int Minimum { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int Maximum {get; set; }
|
|
|
|
|
|
}
|
2018-05-20 18:14:31 +01:00
|
|
|
|
}
|