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