using System.Collections.Generic; using Microsoft.AspNetCore.Identity; namespace BTCPayServer.Data { // Add profile data for application users by adding properties to the ApplicationUser class public class ApplicationUser : IdentityUser { public List Notifications { get; set; } public List UserStores { get; set; } public bool RequiresEmailConfirmation { get; set; } public List StoredFiles { get; set; } public List U2FDevices { get; set; } public List APIKeys { get; set; } } }