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