14 lines
359 B
C#

namespace Marco.Pms.Model.Utilities
{
public class SmtpSettings
{
public string? SmtpServer { get; set; }
public string? ApiKey { get; set; }
public int Port { get; set; }
public string? SenderName { get; set; }
public string? SenderEmail { get; set; }
public string? Password { get; set; }
}
}