From 36effb3431565197b26364c7020e7c685c2b4525 Mon Sep 17 00:00:00 2001 From: Suphonchai Phoonsawat Date: Wed, 10 Jul 2024 12:04:09 +0700 Subject: [PATCH] fix: ProfileType --- .../Responses/Profiles/GetProfileByKeycloakIdDto.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BMA.EHR.Application/Responses/Profiles/GetProfileByKeycloakIdDto.cs b/BMA.EHR.Application/Responses/Profiles/GetProfileByKeycloakIdDto.cs index 385624b1..cac03fd7 100644 --- a/BMA.EHR.Application/Responses/Profiles/GetProfileByKeycloakIdDto.cs +++ b/BMA.EHR.Application/Responses/Profiles/GetProfileByKeycloakIdDto.cs @@ -39,7 +39,7 @@ namespace BMA.EHR.Application.Responses.Profiles public string? Gender { get; set; } - public string ProfileType { get; set; } = string.Empty; + public string? ProfileType { get; set; } }