using System; using System.Collections.Generic; namespace InABox.Mail { public interface ICoreMailSummary { string ID { get; } DateTime Date { get; } string From { get; set; } string Subject { get; set; } IEnumerable To { get; set; } } public interface ICoreMailMessage : ICoreMailSummary { IEnumerable> Attachments { get; set; } IEnumerable BCC { get; set; } string Body { get; set; } bool IsHTML { get; set; } IEnumerable CC { get; set; } void Save(); } }