btcpayserver-plugin-builder/PluginBuilder/ViewModels/Account/AccountDetailsViewModel.cs

17 lines
514 B
C#

using System.ComponentModel.DataAnnotations;
using PluginBuilder.DataModels;
namespace PluginBuilder.ViewModels.Account;
public class AccountDetailsViewModel
{
[Display(Name = "Account Email")]
public string AccountEmail { get; set; } = null!;
public bool AccountEmailConfirmed { get; set; }
public bool NeedToVerifyEmail { get; set; }
public AccountSettings Settings { get; set; } = null!;
public bool GithubAccountVerified { get; set; }
public bool IsNostrVerified { get; set; }
}