femto-backend/Femto.Common/Attributes/EventTypeAttribute.cs
2025-05-03 15:38:57 +02:00

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;
}