namespace Admin.NET.Core; /// /// 自定义规范化结果特性 /// [SuppressSniffer] [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)] public class CustomUnifyResultAttribute : Attribute { public string Name { get; set; } public CustomUnifyResultAttribute(string name) { Name = name; } }