Fix duplicated property

This commit is contained in:
Sergio Matias 2025-08-26 14:18:33 -06:00
parent 9872c1b88b
commit e3d75fbfa8

View File

@ -96,13 +96,5 @@ namespace Core.Thalos.BuildingBlocks
[BsonRepresentation(BsonType.String)] [BsonRepresentation(BsonType.String)]
[JsonPropertyName("token")] [JsonPropertyName("token")]
public string? Token { get; set; } = null; public string? Token { get; set; } = null;
/// <summary>
/// Gets or sets the tenant identifier associated with the user.
/// </summary>
[BsonElement("tenantId")]
[BsonRepresentation(BsonType.ObjectId)]
[JsonPropertyName("tenantId")]
public string? TenantId { get; set; }
} }
} }