isn/Entities/SmtpSettings.cs

12 lines
329 B
C#
Raw Normal View History

2021-04-25 12:12:50 +01:00
namespace nuget_host.Entities
{
public class SmtpSettings
{
public string Server {get; set;}
public int Port {get; set;}
public string SenderName {get; set;}
public string SenderEMail {get; set;}
public string UserName {get; set;}
public string Password {get; set;}
}
}