// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; namespace Microsoft.AspNetCore.Identity.Compat { public class IdentityUserLogin : IdentityUserLogin { } /// /// Represents a login and its associated provider for a user. /// /// The type of the primary key of the user associated with this login. public class IdentityUserLogin : Microsoft.EntityFrameworkCore.IdentityUserLogin { /// /// Gets or sets the friendly name used in a UI for this login. /// public virtual string ProviderDisplayName { get; set; } } }