fix Ids type

This commit is contained in:
2025-06-27 20:21:47 -06:00
parent 20776516fd
commit 6c11246733

View File

@@ -21,12 +21,12 @@ namespace Core.Adapters.Lib
[BsonElement("categoryId")] [BsonElement("categoryId")]
[BsonRepresentation(BsonType.String)] [BsonRepresentation(BsonType.String)]
[JsonPropertyName("categoryId")] [JsonPropertyName("categoryId")]
public Guid CategoryId { get; set; } public string CategoryId { get; set; }
[BsonElement("providerId")] [BsonElement("providerId")]
[BsonRepresentation(BsonType.String)] [BsonRepresentation(BsonType.String)]
[JsonPropertyName("providerId")] [JsonPropertyName("providerId")]
public Guid ProviderId { get; set; } public string ProviderId { get; set; }
[BsonElement("attributes")] [BsonElement("attributes")]
[JsonPropertyName("attributes")] [JsonPropertyName("attributes")]