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")]
[BsonRepresentation(BsonType.String)]
[JsonPropertyName("categoryId")]
public Guid CategoryId { get; set; }
public string CategoryId { get; set; }
[BsonElement("providerId")]
[BsonRepresentation(BsonType.String)]
[JsonPropertyName("providerId")]
public Guid ProviderId { get; set; }
public string ProviderId { get; set; }
[BsonElement("attributes")]
[JsonPropertyName("attributes")]