BMC: Change Data Type for ScheduleGenerationId

This commit is contained in:
Palash Biswas 2022-12-27 15:24:59 +05:30
parent 03dbd16d3e
commit b8fdcf2561
2 changed files with 2 additions and 2 deletions

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

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))]