Newer
Older
eShopOnWeb-VerticalFeatureSlices / src / Web / ViewModels / Manage / ExternalLoginsViewModel.cs
@Derek Comartin Derek Comartin on 27 Jul 2021 460 bytes Init
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Identity;
using System.Collections.Generic;

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; }
    }
}