btcpayserver/BTCPayServer.Data/Data/ApplicationUser.cs

22 lines
804 B
C#
Raw Normal View History

using System;
2017-09-13 08:47:34 +02:00
using System.Collections.Generic;
2020-06-28 10:55:27 +02:00
using Microsoft.AspNetCore.Identity;
2017-09-13 08:47:34 +02:00
namespace BTCPayServer.Data
2017-09-13 08:47:34 +02:00
{
// Add profile data for application users by adding properties to the ApplicationUser class
public class ApplicationUser : IdentityUser
{
public bool RequiresEmailConfirmation { get; set; }
public List<StoredFile> StoredFiles { get; set; }
public List<U2FDevice> U2FDevices { get; set; }
public List<APIKeyData> APIKeys { get; set; }
public DateTimeOffset? Created { get; set; }
public string DisabledNotifications { get; set; }
public List<NotificationData> Notifications { get; set; }
public List<UserStore> UserStores { get; set; }
public List<Fido2Credential> Fido2Credentials { get; set; }
}
2017-09-13 08:47:34 +02:00
}