Editor/Document/BackgroundImagePickerAttribute.cs

A small custom attribute type used in the editor assembly, applied to properties to mark them as background image pickers in the Razor designer document system.

using System;

namespace Grains.RazorDesigner.Document;

[AttributeUsage( AttributeTargets.Property )]
public sealed class BackgroundImagePickerAttribute : Attribute
{
}