From 9a87b0f25783ff813b0663ce716b1a60f6f567e8 Mon Sep 17 00:00:00 2001 From: Anjana Yadav Date: Fri, 12 Jan 2024 14:09:19 -0800 Subject: [PATCH] Updated portal role data type OFMCC-1050 --- OFM.Infrastructure.WebAPI/Models/DataverseModels.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OFM.Infrastructure.WebAPI/Models/DataverseModels.cs b/OFM.Infrastructure.WebAPI/Models/DataverseModels.cs index 5197edbf..3634d656 100644 --- a/OFM.Infrastructure.WebAPI/Models/DataverseModels.cs +++ b/OFM.Infrastructure.WebAPI/Models/DataverseModels.cs @@ -43,7 +43,7 @@ public class ProviderProfile public string? ofm_first_name { get; set; } public string? ofm_last_name { get; set; } public Organization? organization { get; set; } - public string? ofm_portal_role { get; set; } + public int? ofm_portal_role { get; set; } public bool? ofm_is_primary_contact { get; set; } public IList? facility_permission { get; set; } @@ -113,7 +113,7 @@ public record D365Contact public string? odataetag { get; set; } public string? ofm_first_name { get; set; } public string? ofm_last_name { get; set; } - public string? ofm_portal_role { get; set; } + public int? ofm_portal_role { get; set; } public string? ccof_userid { get; set; } public string? ccof_username { get; set; } public string? contactid { get; set; }