yavsc/src/Yavsc.Server/Settings/SmtpSettings.cs

15 lines
283 B
C#
Raw Normal View History

2023-04-05 22:29:40 +01:00
namespace Yavsc.Settings
2016-05-17 18:22:18 +02:00
{
public class SmtpSettings
{
public string Host
{
2026-04-20 00:35:51 +01:00
get ;
set ;
}
2016-05-17 18:22:18 +02:00
public int Port { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
2016-05-17 18:22:18 +02:00
}
2023-04-05 22:29:40 +01:00
}