Files
myAi/api-models/Settings/SmtpSettings.cs
T
claude 64b0219038
Build and Push Docker Images / build (push) Failing after 27s
Move models in separate projects
2026-05-06 17:11:44 +03:00

12 lines
323 B
C#

namespace Models.Settings
{
public 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;
}
}