mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
31 lines
797 B
C#
31 lines
797 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; }
|
|
|
|
/// <summary>
|
|
/// the roles of the user
|
|
/// </summary>
|
|
public string[] Roles { get; set; }
|
|
}
|
|
}
|