Taylohtio/IDP/webapi/webapi.Infrastructure/Model/IEmailSettings.cs

16 lines
378 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace webapi.Infrastructure.Model
{
public interface IEmailSettings
{
string SmtpServer { get; set; }
int SmtpPort { get; set; }
string FromAddress { get; set; }
string SmtpUsername { get; set; }
string SmtpPassword { get; set; }
}
}