From e3d75fbfa89c12abce0a403eff0e4c473d43f63c Mon Sep 17 00:00:00 2001 From: Sergio Matias Date: Tue, 26 Aug 2025 14:18:33 -0600 Subject: [PATCH] Fix duplicated property --- Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs b/Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs index 449f0ca..35f99be 100644 --- a/Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs +++ b/Core.Thalos.BuildingBlocks/Adapters/UserAdapter.cs @@ -96,13 +96,5 @@ namespace Core.Thalos.BuildingBlocks [BsonRepresentation(BsonType.String)] [JsonPropertyName("token")] public string? Token { get; set; } = null; - - /// - /// Gets or sets the tenant identifier associated with the user. - /// - [BsonElement("tenantId")] - [BsonRepresentation(BsonType.ObjectId)] - [JsonPropertyName("tenantId")] - public string? TenantId { get; set; } } }