btcpayserver/BTCPayServer/Models/ApplicationUser.cs

25 lines
538 B
C#
Raw Normal View History

2017-09-13 08:47:34 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Identity;
using BTCPayServer.Data;
namespace BTCPayServer.Models
{
// 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 07:18:09 +02:00
public bool RequiresEmailConfirmation
{
get; set;
}
}
2017-09-13 08:47:34 +02:00
}