laatzen/LaaProductionWeb/LaaProductionWeb.API/Models/SMTP/SMTPEmail.cs
2023-05-08 16:58:41 +02:00

16 lines
320 B
C#

namespace LaaProductionWeb.API.Models.SMTP
{
using System.Collections.Generic;
public class SMTPEmail
{
public string From { get; set; }
public IEnumerable<string> To { get; set; }
public IEnumerable<string> Cc { get; set; }
public string Subject { get; set; }
}
}