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