Init Commit
This commit is contained in:
11
Backend/MotoresArgentinosV2.Core/Models/MailSettings.cs
Normal file
11
Backend/MotoresArgentinosV2.Core/Models/MailSettings.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user