ExternalAPI_NET8/Common/Attributes/ApiGroupAttribute.cs
2026-05-21 17:23:36 +08:00

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