ae2bc9b902
Settings classes now live in the -models project alongside DTOs and client interfaces, eliminating the Settings/ folder from both API projects. - SmtpSettings: email-api/Settings/ → email-api-models/Settings/ (namespace EmailApi.Models.Settings) - PageFetcherSettings: page-fetcher-api/Settings/ → page-fetcher-api-models/Settings/ (namespace PageFetcher.Models.Settings) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
302 B
C#
11 lines
302 B
C#
namespace EmailApi.Models.Settings;
|
|
|
|
public sealed class SmtpSettings
|
|
{
|
|
public string Host { get; set; } = "";
|
|
public int Port { get; set; } = 587;
|
|
public string Username { get; set; } = "";
|
|
public string Password { get; set; } = "";
|
|
public bool UseStartTls { get; set; } = true;
|
|
}
|