11 lines
389 B
C#
11 lines
389 B
C#
namespace MotoresArgentinosV2.Core.Models;
|
|
|
|
public class MailSettings
|
|
{
|
|
public string SmtpHost { get; set; } = string.Empty;
|
|
public int SmtpPort { get; set; }
|
|
public string SmtpUser { get; set; } = string.Empty;
|
|
public string SmtpPass { get; set; } = string.Empty;
|
|
public string SenderEmail { get; set; } = string.Empty;
|
|
public string SenderName { get; set; } = string.Empty;
|
|
} |