Change property to maximum

This commit is contained in:
bjarnef
2016-02-03 02:42:47 +01:00
parent 8e2716d300
commit 4bcee1df71

View File

@@ -19,7 +19,7 @@ namespace Umbraco.Web.PropertyEditors
internal class RelatedLinksPreValueEditor : PreValueEditor
{
[PreValueField("max", "Maximum number of links", "number", Description = "Enter the maximum amount of links to be added, enter 0 for unlimited")]
public int MaxNumber { get; set; }
public int Maximum { get; set; }
}
}
}