mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
26 lines
673 B
C#
26 lines
673 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class ApplicationUserData
|
|
{
|
|
/// <summary>
|
|
/// the id of the user
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// the email AND username of the user
|
|
/// </summary>
|
|
public string Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// Whether the user has verified their email
|
|
/// </summary>
|
|
public bool EmailConfirmed { get; set; }
|
|
|
|
/// <summary>
|
|
/// whether the user needed to verify their email on account creation
|
|
/// </summary>
|
|
public bool RequiresEmailConfirmation { get; set; }
|
|
}
|
|
}
|