Files
Toolkit2/Toolkit.Foundation/NotificationAttribute.cs
T
TheXamlGuy 93c7a43ab4 Codemaid
2024-07-17 21:43:58 +01:00

10 lines
253 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;
}