mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
21 lines
394 B
C#
21 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;
|
|
}
|
|
}
|
|
}
|