Files
motovaultpro/Models/Configuration/MailConfig.cs
Eric Gullickson f7eca4bad5 first commit
2025-07-15 20:34:05 -05:00

12 lines
299 B
C#

namespace MotoVaultPro.Models
{
public class MailConfig
{
public string EmailServer { get; set; }
public string EmailFrom { get; set; }
public int Port { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}