16 lines
320 B
C#
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; }
|
|
}
|
|
}
|