refactor(*): Move EmailService inside the main project

This commit is contained in:
Josh Creek
2021-04-04 09:33:42 +01:00
parent 142c48323c
commit b89a7ab7aa
13 changed files with 23 additions and 43 deletions
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace My.ProjectName.Services.EmailService
{
public class EmailConfiguration
{
public string From { get; set; }
public string SmtpServer { get; set; }
public int Port { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}