DotBased/DotBased.AspNet.Authority/Attributes/ProtectAttribute.cs

10 lines
243 B
C#

namespace DotBased.AspNet.Authority.Attributes;
/// <summary>
/// Indicates to protect the property before saving to the repository.
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public class ProtectAttribute : Attribute
{
}