added scaffolding for email sending methods

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-01-13 11:12:37 -07:00
parent 03b89786ec
commit c9d60910e5
4 changed files with 45 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
namespace CarCareTracker.Models
{
public class MailConfig
{
public string EmailServer { get; set; }
public string EmailFrom { get; set; }
public bool UseSSL { get; set; }
public int Port { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}

View File

@@ -7,5 +7,6 @@
public string EmailAddress { get; set; }
public string Password { get; set; }
public bool IsAdmin { get; set; }
public bool IsRootUser { get; set; } = false;
}
}