* Clean up datatype configurations for V14 * Fix merge * Remove ParameterEditorCollection + revert accidental changes to core project file
11 lines
257 B
C#
11 lines
257 B
C#
namespace Umbraco.Cms.Core.PropertyEditors;
|
|
|
|
/// <summary>
|
|
/// Represents the configuration for the textarea value editor.
|
|
/// </summary>
|
|
public class TextAreaConfiguration
|
|
{
|
|
[ConfigurationField("maxChars")]
|
|
public int? MaxChars { get; set; }
|
|
}
|