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