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

17 lines
465 B
C#

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