mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
12 lines
277 B
C#
12 lines
277 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Models.AccountViewModels
|
|
{
|
|
public class ForgotPasswordViewModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
[Display(Name = "Email address")]
|
|
public string Email { get; set; }
|
|
}
|
|
}
|