Files
Umbraco-CMS/src/Umbraco.Abstractions/PropertyEditors/TextboxConfiguration.cs

14 lines
418 B
C#
Raw Normal View History

2018-01-24 11:44:44 +01:00
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
/// <summary>
/// Represents the configuration for the textbox value editor.
/// </summary>
public class TextboxConfiguration
{
2018-03-27 16:18:51 +02:00
[ConfigurationField("maxChars", "Maximum allowed characters", "textstringlimited", Description = "If empty, 500 character limit")]
2018-01-26 17:55:20 +01:00
public int? MaxChars { get; set; }
2018-01-24 11:44:44 +01:00
}
2018-03-27 16:18:51 +02:00
}