Moved entity configurations to their own folder

This commit is contained in:
2026-08-20 15:49:20 +02:00
parent 436ebf36a1
commit 7415a53ee2
52 changed files with 146 additions and 126 deletions
@@ -0,0 +1,8 @@
namespace PostFundManagement.Domain.Configuration.Email;
public sealed class Account
{
public string? Username { get; set; }
public string? Password { get; set; }
}
@@ -0,0 +1,12 @@
namespace PostFundManagement.Domain.Configuration.Email;
public sealed class SmtpSettings
{
public Account? Credentials { get; set; }
public int Port { get; set; }
public string? Host { get; set; }
public bool UseSsl { get; set; }
}