Files
Cleanuparr/code/backend/Cleanuparr.Shared/Attributes/SensitiveDataAttribute.cs
2025-06-18 21:58:48 +03:00

10 lines
278 B
C#

namespace Cleanuparr.Shared.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
{
}