btcpayserver/BTCPayServer/Models/ManageViewModels/IndexViewModel.cs

22 lines
377 B
C#
Raw Normal View History

2017-09-13 15:47:34 +09:00
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;
}
2017-09-13 15:47:34 +09:00
public bool IsEmailConfirmed { get; set; }
2017-09-13 15:47:34 +09:00
}
2017-09-13 15:47:34 +09:00
}