10 lines
287 B
C#
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;
|
|
}
|
|
}
|