You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
690 B

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; }
}
}