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