DataType refactoring - in progress

This commit is contained in:
Stephan
2018-01-24 13:37:14 +01:00
parent c3e6886ac0
commit f7f42f893b
57 changed files with 367 additions and 545 deletions

View File

@@ -0,0 +1,14 @@
namespace Umbraco.Web.PropertyEditors
{
/// <summary>
/// Represents the configuration for a multiple testring value editor.
/// </summary>
public class MultipleTestStringConfiguration
{
// fields are configured in the editor
public int Minimum { get; set; }
public int Maximum {get; set; }
}
}