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