mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
22 lines
377 B
C#
22 lines
377 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Models.ManageViewModels
|
|
{
|
|
public class IndexViewModel
|
|
{
|
|
public string Username { get; set; }
|
|
|
|
|
|
[Required]
|
|
[EmailAddress]
|
|
[MaxLength(50)]
|
|
public string Email
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public bool IsEmailConfirmed { get; set; }
|
|
|
|
}
|
|
}
|