yavsc/src/Yavsc.Server/Settings/SmtpSettings.cs
2026-04-20 00:35:51 +01:00

15 lines
283 B
C#

namespace Yavsc.Settings
{
public class SmtpSettings
{
public string Host
{
get ;
set ;
}
public int Port { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}