mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
21 lines
522 B
C#
21 lines
522 B
C#
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<UserLoginInfo> CurrentLogins { get; set; }
|
|
|
|
public IList<AuthenticationScheme> OtherLogins { get; set; }
|
|
|
|
public bool ShowRemoveButton { get; set; }
|
|
|
|
public string StatusMessage { get; set; }
|
|
}
|
|
}
|