using System; using System.Diagnostics; namespace ScreenConnect; [AttributeUsage(AttributeTargets.Method)] [Conditional("JETBRAINS_ANNOTATIONS")] public sealed class NotifyPropertyChangedInvocatorAttribute : Attribute { public string ParameterName { get; } public NotifyPropertyChangedInvocatorAttribute() { } public NotifyPropertyChangedInvocatorAttribute(string parameterName) { ParameterName = parameterName; } }