mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
20 lines
394 B
C#
20 lines
394 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using BTCPayServer.Services.Mails;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class EmailsViewModel
|
|
{
|
|
public EmailSettings Settings
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[EmailAddress]
|
|
[Display(Name = "Test Email")]
|
|
public string TestEmail
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|