Files
Toolkit2/Toolkit.Foundation/NotificationAttribute.cs
T
TheXamlGuy 8f1a3252c6 wip
2024-05-31 14:07:35 +01:00

10 lines
250 B
C#

namespace Toolkit.Foundation;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
public class NotificationAttribute(Type type, object key) : Attribute
{
public Type Type => type;
public object Key => key;
}