15 lines
350 B
C#
15 lines
350 B
C#
namespace Umbraco.Web.PropertyEditors
|
|
{
|
|
/// <summary>
|
|
/// Represents the configuration for a multiple textstring value editor.
|
|
/// </summary>
|
|
public class MultipleTextStringConfiguration
|
|
{
|
|
// fields are configured in the editor
|
|
|
|
public int Minimum { get; set; }
|
|
|
|
public int Maximum {get; set; }
|
|
}
|
|
}
|