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