Newer
Older
ReliableMessaging / src / Web / ViewModels / Manage / ExternalLoginsViewModel.cs
@Derek Comartin Derek Comartin on 10 Apr 2023 433 bytes Init
using System.Collections.Generic;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Identity;

namespace Microsoft.eShopWeb.Web.ViewModels.Manage;

public class ExternalLoginsViewModel
{
    public IList<UserLoginInfo>? CurrentLogins { get; set; }
    public IList<AuthenticationScheme>? OtherLogins { get; set; }
    public bool ShowRemoveButton { get; set; }
    public string? StatusMessage { get; set; }
}