Code/InjectThemeAttribute.cs
using System;

namespace BetterUI;

/// <summary>
/// Theme classes will be automatically injected into classes decorated with this attribute.
/// </summary>
/// <remarks>
/// Use this attribute to automatically inject theme classes into your UI.
/// </remarks>
[AttributeUsage( AttributeTargets.Class )]
public sealed class InjectThemeAttribute : Attribute;