namespace Umbraco.Cms.Core.PropertyEditors; /// /// Represents the configuration for the label value editor. /// public class LabelConfiguration : IConfigureValueType { [ConfigurationField(Constants.PropertyEditors.ConfigurationKeys.DataValueType, "Value type", "valuetype")] public string ValueType { get; set; } = ValueTypes.String; }