Files
cesnimda ce76046a29 feat: complete release readiness work
- consolidate API ownership and remove dead vendor code

- add Stripe billing, learning paths, and public CV hardening

- add migration, recovery, security, audit, and browser gates
2026-07-31 16:54:16 +02:00

16 lines
491 B
C#

namespace JobTrackerApi.Models;
public sealed class SystemEmailSettings
{
public int Id { get; set; } = 1;
public bool? Enabled { get; set; }
public string? SmtpHost { get; set; }
public int? SmtpPort { get; set; }
public string? SmtpUser { get; set; }
public string? SmtpPassword { get; set; }
public string? From { get; set; }
public string? FromName { get; set; }
public bool? SmtpEnableSsl { get; set; }
public int? SmtpTimeoutMs { get; set; }
}