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

13 lines
338 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
{
2023-04-05 22:29:40 +01:00
public string Server { get; set; }
2016-05-17 18:22:18 +02:00
public int Port { get; set; }
2023-04-05 22:29:40 +01:00
public string SenderName { get; set; }
public string SenderEmail { 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
}