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 To { get; set; } = null!; public string Title { get; set; } = null!; public string Body { get; set; } = null!; public bool IsSendable { get; set; } = true; } }