* Clean up datatype configurations for V14 * Fix merge * Remove ParameterEditorCollection + revert accidental changes to core project file
9 lines
185 B
C#
9 lines
185 B
C#
namespace Umbraco.Cms.Core.PropertyEditors;
|
|
|
|
public class FileExtensionConfigItem : IFileExtensionConfigItem
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Value { get; set; }
|
|
}
|