Files
WorkFlowCheck/src/WorkFlowCheck.BL/Models/EmailSettings.cs
T
ivanszabo 623a3c49b1 MailKit-tel
email küldése
2025-04-10 19:04:59 +02:00

18 lines
491 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.BL.Models
{
public class EmailSettings
{
public string SmtpServer { get; set; } = string.Empty;
public int SmtpPort { get; set; }
public string Username { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string SenderName { get; set; } = string.Empty;
}
}