2024-05-25 18:43:12 +02:00

15 lines
421 B
C#

using Microsoft.EntityFrameworkCore.Metadata.Internal;
namespace songrequests_blazor.Settings
{
public class Mailserver
{
public string Host { get; set; } = null!;
public int Port { get; set; }
public bool EnableSSL { get; set; }
public string FromEmail { get; set; } = null!;
public string? Username { get; set; }
public string? Password { get; set; }
}
}