Files
magman/MagMan.Core/MailKitMailSettings.cs
Samuele Locatelli 983586552b Completo riorganizzazione progetti:
- Core
- Data.Admin
2024-01-10 17:55:06 +01:00

21 lines
545 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagMan.Core
{
public class MailKitMailSettings
{
public string? DisplayName { get; set; }
public string? From { get; set; }
public string? UserName { get; set; }
public string? Password { get; set; }
public string? Host { get; set; }
public int Port { get; set; }
public bool UseSSL { get; set; }
public bool UseStartTls { get; set; }
}
}