12 lines
280 B
C#
12 lines
280 B
C#
namespace Web.Core.Common.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
|
public class ApiGroupAttribute : Attribute
|
|
{
|
|
public string GroupName { get; }
|
|
|
|
public ApiGroupAttribute(string groupName)
|
|
{
|
|
GroupName = groupName;
|
|
}
|
|
} |