feat(*): Add base project files

This commit is contained in:
2021-03-14 12:57:18 +00:00
parent 64b6a84252
commit 1b5a86a401
141 changed files with 45005 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace 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; }
}
}