18 lines
491 B
C#
18 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WorkFlowCheck.BL.Models
|
|
{
|
|
public class EmailSettings
|
|
{
|
|
public string SmtpServer { get; set; } = string.Empty;
|
|
public int SmtpPort { get; set; }
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public string SenderName { get; set; } = string.Empty;
|
|
}
|
|
}
|