Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/MultipleTextStringConfiguration.cs
leekelleher 21dbd1e402 Corrected a typo with MultipleTextStringConfiguration class name
@zpqrtbnk approved in person this at CGRT18 ;-)
2018-05-20 18:16:09 +01:00

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; }
}
}