Coursework_ComputerStore_Li.../ComputerStoreContracts/BindingModels/MailConfigBindingModel.cs

19 lines
558 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreContracts.BindingModels
{
public class MailConfigBindingModel
{
public string Login { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string SmtpClientHost { get; set; } = string.Empty;
public int SmtpClientPort { get; set; }
public string PopHost { get; set; } = string.Empty;
public int PopPort { get; set; }
}
}