10 lines
289 B
C#
10 lines
289 B
C#
namespace WPFluent.Gallery.ControlsLookup;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
internal sealed class GalleryPageAttribute(string description, SymbolRegular icon) : Attribute
|
|
{
|
|
public string Description { get; } = description;
|
|
|
|
public SymbolRegular Icon { get; } = icon;
|
|
}
|