using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Identity; namespace BTCPayServer.Models.ManageViewModels { public class ExternalLoginsViewModel { public IList CurrentLogins { get; set; } public IList OtherLogins { get; set; } public bool ShowRemoveButton { get; set; } public string StatusMessage { get; set; } } }