DotBased/DotBased.AspNet.Authority/Attributes/ProtectAttribute.cs
2024-12-25 22:50:04 +01:00

10 lines
251 B
C#

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