transactions

This commit is contained in:
2025-08-24 14:18:20 +02:00
parent 1b2d95344a
commit 5777e351bf
107 changed files with 4940 additions and 1266 deletions

View 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; }
}