Coursach/Course/Contracts/BindingModels/MailConfigModel.cs

13 lines
429 B
C#
Raw Normal View History

2024-05-28 19:21:01 +04:00
namespace Contracts.BindingModels
{
public class MailConfigModel
{
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; }
}
}