mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
10 lines
225 B
C#
10 lines
225 B
C#
|
namespace DotBased.AspNet.Authority.Attributes;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Indicates that the property should be protected.
|
||
|
/// </summary>
|
||
|
[AttributeUsage(AttributeTargets.Property)]
|
||
|
public class ProtectAttribute : Attribute
|
||
|
{
|
||
|
|
||
|
}
|