File: IdentityDefaultUIAttribute.cs | Web Access |
Project: src\src\Identity\UI\src\Microsoft.AspNetCore.Identity.UI.csproj (Microsoft.AspNetCore.Identity.UI) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Identity.UI; [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)] internal sealed class IdentityDefaultUIAttribute : Attribute { public IdentityDefaultUIAttribute(Type implementationTemplate) { Template = implementationTemplate; } public Type Template { get; } } |