using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MagMan.Core { public class MailKitMailData { // Receiver public List To { get; set; } = new List(); public List Bcc { get; set; } = new List(); public List Cc { get; set; } = new List(); // Sender public string? From { get; set; } public string? DisplayName { get; set; } public string? ReplyTo { get; set; } public string? ReplyToName { get; set; } // Content public string Subject { get; set; } = ""; public string? Body { get; set; } //// Attach (opzionale) //public IFormFileCollection? Attachments { get; set; } } }