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.
 
 

57 lines
1.3 KiB

using Common.Models.Enums;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Models.Notification
{
//public class NotificationViewModel
//{
// public List<DeviceTokenViewModel> DeviceToken { get; set; }
// public NotificationDTO Notification { get; set; }
// public bool IsBulkNotification { get; set; }
//}
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 int BroadCastNoticeId { get; set; }
}
//public class NotificationDTO
//{
// [JsonProperty("body")]
// public string Body { get; set; }
// [JsonProperty("title")]
// public string Title { get; set; }
// [JsonProperty("image")]
// public string Image { get; set; }
//}
public class FireBaseLogResponseViewModel
{
public string Response { get; set; }
public string Data { get; set; }
}
}