btcpayserver/BTCPayServer.Client/Models/EmailSettingsData.cs

34 lines
411 B
C#
Raw Normal View History

2022-03-11 10:17:50 +01:00
namespace BTCPayServer.Client.Models;
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 FromDisplay
{
get; set;
}
public string From
{
get; set;
}
}