namespace BTCPayServer.Client.Models
{
public class ApplicationUserData
{
///
/// the id of the user
///
public string Id { get; set; }
///
/// the email AND username of the user
///
public string Email { get; set; }
///
/// Whether the user has verified their email
///
public bool EmailConfirmed { get; set; }
///
/// whether the user needed to verify their email on account creation
///
public bool RequiresEmailConfirmation { get; set; }
}
}