Browse Source

BMC: Change Data Type for ScheduleGenerationId

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

+ 1
- 1
BCS.BMC/src/BCS.BMC.Application/FirebaseCloudMessaging/Dto/FireStoreNotificationModel.cs View File

@ -30,6 +30,6 @@ namespace BCS.BMC.FirebaseCloudMessaging.Dto
[FirestoreProperty]
public int CompanyId { get; set; }
[FirestoreProperty]
public Guid? ScheduleGenerationId { get; set; }
public string ScheduleGenerationId { get; set; }
}
}

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

@ -24,7 +24,7 @@ namespace BCS.BMC.FirebaseCloudMessaging.Dto
public bool Status { get; set; }
public List<string> UserId { get; set; }
public string CompanyUrl { get; set; }
public Guid? ScheduleGenerationId { get; set; }
public string ScheduleGenerationId { get; set; }
}
//[AutoMapFrom(typeof(NotificationModel))]


Loading…
Cancel
Save