16 lines
351 B
C#
16 lines
351 B
C#
namespace PortBlog.API.Models
|
|
{
|
|
public class MailSettingsDto
|
|
{
|
|
public string Host { get; set; } = string.Empty;
|
|
|
|
public int Port { get; set; }
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public bool Enable { get; set; } = false;
|
|
}
|
|
}
|