using Common.Model.Config; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common.Model.Notification { public class RecipientViewModel { public string Address { get; set; } public string CcAddress { get; set; } public string BccAddress { get; set; } public string DeviceType { get; set; } public DisplayMailAddress MailAddress { get; set; } public NotificationDTO NotificationContent { get; set; } } public class DisplayMailAddress { public string FromEmail { get; set; } public string AliasName { get; set; } } }