7 lines
No EOL
196 B
C#
7 lines
No EOL
196 B
C#
namespace Femto.Common.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public class EventTypeAttribute(string name) : Attribute
|
|
{
|
|
public string Name { get; } = name;
|
|
} |