using Microsoft.AspNetCore.Mvc.ApiExplorer; namespace Gs.Toolbox { /// /// swagger分组特性 /// public class ApiGroupAttribute : Attribute, IApiDescriptionGroupNameProvider { public ApiGroupAttribute(ApiGroupNames name) { GroupName = name.ToString(); } public string GroupName { get; set; } } }