|
|
@ -13,17 +13,13 @@ namespace BCS.BMC.FirebaseCloudMessaging.Dto |
|
|
|
[AutoMapTo(typeof (FirebaseCloudMessageDetails))] |
|
|
|
public class NotificationModel |
|
|
|
{ |
|
|
|
//[JsonProperty("deviceId")]
|
|
|
|
//public string DeviceId { get; set; }
|
|
|
|
//[JsonProperty("isAndroidDevice")]
|
|
|
|
//public bool IsAndroidDevice { get; set; }
|
|
|
|
|
|
|
|
public string Id { get; set; } |
|
|
|
[JsonProperty("title")] |
|
|
|
public string Title { get; set; } |
|
|
|
public List<string> Title { get; set; } |
|
|
|
[JsonProperty("body")] |
|
|
|
public string Body { get; set; } |
|
|
|
public int UserId { get; set; } |
|
|
|
public string FcmToken { get; set; } |
|
|
|
public string SenderImageurl { get; set; } |
|
|
|
public string SenderName { get; set; } |
|
|
|
public DateTime? MessageSentDateTime { get; set; } |
|
|
|