Browse Source

BMC: Modification for NitoficationModel Class

feature/ModificationForSentNotificationAPI
Palash Biswas 2 years ago
parent
commit
2adb716ead
1 changed files with 2 additions and 6 deletions
  1. +2
    -6
      BCS.BMC/src/BCS.BMC.Application/FirebaseCloudMessaging/Dto/NotificationModel.cs

+ 2
- 6
BCS.BMC/src/BCS.BMC.Application/FirebaseCloudMessaging/Dto/NotificationModel.cs View File

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


Loading…
Cancel
Save