using System.Collections.Generic; namespace Skeleton.DTOs; public class EmailOptionsDto { public IList ToEmails { get; set; } public string Subject { get; set; } public string Body { get; set; } public IList> PlaceHolders { get; set; } /// /// Filenames to attach /// public IList Attachments { get; set; } }