architechure changes

This commit is contained in:
Wyatt Miller
2018-11-26 20:09:27 -05:00
parent d3f0e0dc10
commit 1f94357521
12 changed files with 46 additions and 15 deletions

View File

@ -2,6 +2,32 @@ namespace DeskHubSharp
{
public class Email
{
private string _toEmail = "wjmiller2016@gmail.com";
private string _fromEmail = "wjmiller2016@gmail.com";
private string _passwordEmail = "IhaveanAMDRX580";
public string Password
{
get { return _passwordEmail; }
set { _passwordEmail = value; }
}
public string FromEmail
{
get { return _fromEmail; }
set { _fromEmail = value; }
}
public string ToEmail
{
get { return _toEmail; }
set { _toEmail = value; }
}
public Email()
{
}
}
}