Files
FACULTATE-HEALTHCARE_MANAGER/backend/Infrastructure/SmptSettings.cs
T

12 lines
290 B
C#

namespace Infrastructure;
public class SmtpSettings
{
public string Host { get; set; }
public int Port { get; set; }
public string From { get; set; }
public bool EnableSSL { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}