mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
16 lines
290 B
C#
16 lines
290 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using BTCPayServer.Validation;
|
|
|
|
namespace BTCPayServer.Models.InvoicingModels
|
|
{
|
|
public class UpdateCustomerModel
|
|
{
|
|
[MailboxAddress]
|
|
[Required]
|
|
public string Email
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|