using System; using System.Diagnostics; namespace ScreenConnect; [AttributeUsage(AttributeTargets.Parameter)] [Conditional("JETBRAINS_ANNOTATIONS")] public sealed class PathReferenceAttribute : Attribute { public string BasePath { get; } public PathReferenceAttribute() { } public PathReferenceAttribute(string basePath) { BasePath = basePath; } }