btcpayserver/BTCPayServer.Client/Models/EmailSettingsData.cs

29 lines
347 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;
}
}