b1ed1cb201
Removes the spurious Api segment to match the pattern used by all other models projects: CvMatcher.Models.*, Rag.Models.*, PageFetcher.Models.*. Updated all consumers: email-api, api, cv-search-job. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
299 B
C#
11 lines
299 B
C#
namespace Email.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;
|
|
}
|