2017-09-13 15:47:34 +09:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models.InvoicingModels
|
|
|
|
{
|
|
|
|
public class UpdateCustomerModel
|
|
|
|
{
|
2017-10-27 17:53:04 +09:00
|
|
|
[EmailAddress]
|
|
|
|
[Required]
|
|
|
|
public string Email
|
|
|
|
{
|
|
|
|
get; set;
|
|
|
|
}
|
|
|
|
}
|
2017-09-13 15:47:34 +09:00
|
|
|
}
|