btcpayserver/BTCPayServer.Data/Data/ApplicationUser.cs

34 lines
754 B
C#
Raw Normal View History

2017-09-13 15:47:34 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Identity;
using BTCPayServer.Data;
namespace BTCPayServer.Data
2017-09-13 15:47:34 +09:00
{
// Add profile data for application users by adding properties to the ApplicationUser class
public class ApplicationUser : IdentityUser
{
public List<UserStore> UserStores
{
get;
set;
}
2017-09-27 14:18:09 +09:00
public bool RequiresEmailConfirmation
{
get; set;
}
2020-02-24 16:40:04 +01:00
public List<StoredFile> StoredFiles
{
get;
set;
}
public List<U2FDevice> U2FDevices { get; set; }
public List<APIKeyData> APIKeys { get; set; }
}
2017-09-13 15:47:34 +09:00
}