绕过JNPF规范过滤

This commit is contained in:
alex
2023-07-12 08:50:04 +08:00
parent 1d36768640
commit d11304abfa
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.Common.Utils
{
[AttributeUsage(AttributeTargets.Method)]
public class SkipNormalizationAttribute : Attribute
{
}
}