Corrected a typo with MultipleTextStringConfiguration class name

@zpqrtbnk approved in person this at CGRT18 ;-)
This commit is contained in:
leekelleher
2018-05-20 18:14:31 +01:00
parent 129e094b09
commit 21dbd1e402
4 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
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; }
}
}