btcpayserver/BTCPayServer/Models/ServerViewModels/EmailsViewModel.cs

26 lines
536 B
C#
Raw Normal View History

2020-06-28 17:55:27 +09:00
using System;
2017-09-27 14:18:09 +09:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
2020-06-28 17:55:27 +09:00
using BTCPayServer.Services.Mails;
using Microsoft.AspNetCore.Mvc.Rendering;
2017-09-27 14:18:09 +09:00
namespace BTCPayServer.Models.ServerViewModels
{
public class EmailsViewModel
{
public EmailSettings Settings
{
get; set;
}
[EmailAddress]
[Display(Name = "Test Email")]
public string TestEmail
{
get; set;
}
}
2017-09-27 14:18:09 +09:00
}