7 lines
185 B
C#
7 lines
185 B
C#
namespace Toolkit.Foundation;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = true)]
|
|
public class NotificationAttribute(object key) : Attribute
|
|
{
|
|
public object Key => key;
|
|
} |