btcpayserver/BTCPayServer/Models/InvoicingModels/UpdateCustomerModel.cs

15 lines
257 B
C#

using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Models.InvoicingModels
{
public class UpdateCustomerModel
{
[EmailAddress]
[Required]
public string Email
{
get; set;
}
}
}