namespace StandManager.MailProcessor.Mail; public class Email { public string From { get; set; } public List To { get; set; } public List? Cc { get; set; } public string Subject { get; set; } public string Body { get; set; } }