ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/BindingModels/MailConfigBindingModel.cs
Максим Куклев 58b5d60452 загрузил
2024-05-19 10:10:11 +04:00

19 lines
528 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationContracts.BindingModels
{
public class MailConfigBindingModel
{
public string MailLogin { get; set; } = string.Empty;
public string MailPassword { 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; }
}
}