Files
Toolkit2/Toolkit.Foundation/NotificationAttribute.cs
T
2024-06-04 12:14:00 +01:00

11 lines
254 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;
}