mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-26 15:38:04 -05:00
10 lines
278 B
C#
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
|
|
{
|
|
}
|