Files
2026-06-20 10:26:27 +02:00

10 lines
287 B
C#

namespace EonaCat.DoxaApi.Attributes
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
public sealed class DoxaApiGroupAttribute : Attribute
{
public string Name { get; }
public DoxaApiGroupAttribute(string name) => Name = name;
}
}