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

10 lines
251 B
C#
Raw Permalink Normal View History

2024-12-21 15:30:17 +01:00
namespace DotBased.AspNet.Authority.Attributes;
/// <summary>
2024-12-25 22:50:04 +01:00
/// Indicates to protect the property before saving/loading to the repository.
2024-12-21 15:30:17 +01:00
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public class ProtectAttribute : Attribute
{
}