Files

16 lines
386 B
C#

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; }
}
}