Files
Cleanuparr/code/Common/Attributes/SensitiveDataAttribute.cs
2025-05-29 23:01:42 +03:00

10 lines
267 B
C#

namespace Common.Attributes;
/// <summary>
/// Marks a property as containing sensitive data that should be encrypted when stored in configuration files.
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public class SensitiveDataAttribute : Attribute
{
}