Attribute type used in the editor that marks a property as an image picker. It is an empty marker attribute applied to properties.
using System;
namespace Grains.RazorDesigner.Document;
[AttributeUsage( AttributeTargets.Property )]
public sealed class ImagePickerAttribute : Attribute
{
}