btcpayserver/BTCPayServer.Data/Data/ApplicationUser.cs

31 lines
721 B
C#
Raw Normal View History

2017-09-13 15:47:34 +09:00
using System.Collections.Generic;
2020-06-28 17:55:27 +09:00
using Microsoft.AspNetCore.Identity;
2017-09-13 15:47:34 +09:00
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
{
2020-05-28 15:15:24 -05:00
public List<NotificationData> Notifications { get; set; }
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;
}
2020-05-28 15:15:24 -05:00
public List<U2FDevice> U2FDevices { get; set; }
public List<APIKeyData> APIKeys { get; set; }
}
2017-09-13 15:47:34 +09:00
}