14 lines
381 B
C#
14 lines
381 B
C#
using Umbraco.Core.PropertyEditors;
|
|
|
|
namespace Umbraco.Web.PropertyEditors
|
|
{
|
|
public class MultiUrlPickerConfiguration
|
|
{
|
|
[ConfigurationField("minNumber", "Minimum number of items", "number")]
|
|
public int MinNumber { get; set; }
|
|
|
|
[ConfigurationField("maxNumber", "Maximum number of items", "number")]
|
|
public int MaxNumber { get; set; }
|
|
}
|
|
}
|