using System; using System.Diagnostics; namespace JetBrains.Annotations; [AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter)] [Conditional("JETBRAINS_ANNOTATIONS")] internal sealed class AspMvcControllerAttribute : Attribute { public string AnonymousProperty { get; private set; } public AspMvcControllerAttribute() { } public AspMvcControllerAttribute(string anonymousProperty) { AnonymousProperty = anonymousProperty; } }