btcpayserver/BTCPayServer.Client/Models/EmailSettingsData.cs
2022-03-26 21:46:40 +00:00

33 lines
411 B
C#

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;
}
}