mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-15 14:04:41 +08:00
11 lines
262 B
C#
11 lines
262 B
C#
using System;
|
|
|
|
namespace Infrastructure.MVC
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
|
|
public class NoFilterAttribute : Attribute
|
|
{
|
|
public NoFilterAttribute() { }
|
|
}
|
|
}
|