transactions
This commit is contained in:
10
back/Options/MailServerOptions.cs
Normal file
10
back/Options/MailServerOptions.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace back.Options;
|
||||
|
||||
public sealed class MailServerOptions
|
||||
{
|
||||
public required string SmtpServer { get; set; }
|
||||
public required int Puerto { get; set; }
|
||||
public required string Usuario { get; set; }
|
||||
public required string Password { get; set; }
|
||||
public bool EnableSsl { get; set; }
|
||||
}
|
Reference in New Issue
Block a user