using System; using System.Diagnostics; namespace JetBrains.Annotations; [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] [Conditional("JETBRAINS_ANNOTATIONS")] internal sealed class AspMvcAreaViewLocationFormatAttribute : Attribute { public string Format { get; private set; } public AspMvcAreaViewLocationFormatAttribute(string format) { Format = format; } }