BMC: Modification for NitoficationModel Class

This commit is contained in:
Palash Biswas 2022-12-07 17:43:24 +05:30
parent c93955df68
commit 2adb716ead

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