iotgateway/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Attributes/AllRightsAttribute.cs
2021-12-14 14:10:44 +08:00

12 lines
331 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace WalkingTec.Mvvm.Core
{
/// <summary>
/// 标记Controller或Action不受权限控制只要登录任何人都可访问
/// </summary>
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false)]
public class AllRightsAttribute : Attribute
{
}
}