using System; using System.Diagnostics; namespace ScreenConnect; [Conditional("JETBRAINS_ANNOTATIONS")] public sealed class PublicAPIAttribute : Attribute { public string Comment { get; } public PublicAPIAttribute() { } public PublicAPIAttribute(string comment) { Comment = comment; } }