Change type in dictionary

This commit is contained in:
2025-06-27 20:51:57 -06:00
parent feee4ebdfa
commit 4358891b24

View File

@@ -30,6 +30,6 @@ namespace Core.Adapters.Lib
[BsonElement("attributes")]
[JsonPropertyName("attributes")]
public Dictionary<string, BsonValue> Attributes { get; set; } = [];
public Dictionary<string, string> Attributes { get; set; } = [];
}
}