mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-12-22 03:19:45 +08:00
14 lines
245 B
C#
14 lines
245 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.Mvc.Models
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 允许匿名访问
|
|||
|
|
/// </summary>
|
|||
|
|
public class AnonymousAttribute :Attribute
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|