btcpayserver/BTCPayServer.Client/Models/EmailSettingsData.cs

30 lines
401 B
C#
Raw Normal View History

namespace BTCPayServer.Client.Models;
2022-03-11 10:17:50 +01:00
public class EmailSettingsData
{
public string Server
{
get; set;
}
public int? Port
{
get; set;
}
public string Login
{
get; set;
}
public string Password
{
get; set;
}
public string From
{
get; set;
}
public bool DisableCertificateCheck { get; set; }
2022-03-11 10:17:50 +01:00
}