From 4a2ed52a2f4e020dc8fdbdeef782c3db15433de0 Mon Sep 17 00:00:00 2001 From: Sergio Matias Date: Tue, 26 Aug 2025 14:10:48 -0600 Subject: [PATCH] fix --- Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs b/Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs index e8eea66..52e6988 100644 --- a/Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs +++ b/Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs @@ -103,6 +103,5 @@ namespace Core.Thalos.BuildingBlocks [BsonElement("tenantId")] [BsonRepresentation(BsonType.ObjectId)] [JsonPropertyName("tenantId")] - public string? TenantId { get; set; } = null; + public string? TenantId { get; set; } } -}