mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
35 lines
785 B
C#
35 lines
785 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
// Add profile data for application users by adding properties to the ApplicationUser class
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
public List<UserStore> UserStores
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool RequiresEmailConfirmation
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public List<BTCPayOpenIdClient> OpenIdClients { get; set; }
|
|
|
|
public List<StoredFile> StoredFiles
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public List<U2FDevice> U2FDevices { get; set; }
|
|
}
|
|
}
|