Files
components/LiteCharms.Features/Email/Configuration/SmtpSettings.cs
T
2026-05-13 20:06:24 +02:00

13 lines
243 B
C#

namespace LiteCharms.Features.Email.Configuration;
public class SmtpSettings
{
public Account? Credentials { get; set; }
public int Port { get; set; }
public string? Host { get; set; }
public bool UseSsl { get; set; }
}