using System; using System.Diagnostics; namespace ScreenConnect; [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, AllowMultiple = true)] [Conditional("JETBRAINS_ANNOTATIONS")] public sealed class ValueProviderAttribute : Attribute { public string Name { get; } public ValueProviderAttribute(string name) { Name = name; } }