12 lines
299 B
C#
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; }
|
|
}
|
|
}
|