16 lines
407 B
C#
16 lines
407 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BusinessLogic.Tools.Mail
|
|
{
|
|
public class Mail
|
|
{
|
|
public IEnumerable<string> To { get; set; } = null!;
|
|
public string Title { get; set; } = null!;
|
|
public string Body { get; set; } = null!;
|
|
public bool IsSendable { get; set; } = true;
|
|
}
|
|
} |