Remove unnecessary code from user services

This commit is contained in:
2025-07-25 23:57:03 -06:00
parent 9590a03cee
commit 570e74a199
5 changed files with 1 additions and 226 deletions

View File

@@ -54,19 +54,5 @@ namespace Core.Thalos.Domain.Contexts.Onboarding.Request
[BsonRepresentation(BsonType.ObjectId)]
[JsonPropertyName("roleId")]
public string RoleId { get; set; } = null!;
/// <summary>
/// Gets or sets the array of companies associated with the user.
/// </summary>
[BsonElement("companies")]
[JsonPropertyName("companies")]
public string[] Companies { get; set; } = null!;
/// <summary>
/// Gets or sets the array of projects associated with the user.
/// </summary>
[BsonElement("projects")]
[JsonPropertyName("projects")]
public string[]? Projects { get; set; }
}
}

View File

@@ -8,7 +8,7 @@
<ItemGroup>
<PackageReference Include="Core.Blueprint.KeyVault" Version="1.0.3" />
<PackageReference Include="Core.Thalos.BuildingBlocks" Version="1.0.7" />
<PackageReference Include="Core.Thalos.BuildingBlocks" Version="1.0.8" />
</ItemGroup>
</Project>