Change ParentTagId type from string to string[] in TagAdapter

This commit is contained in:
Oscar Morales
2025-08-01 09:07:58 -06:00
parent 7866ef07d5
commit 163eb0e5aa

View File

@@ -21,7 +21,7 @@ namespace Core.Adapters.Lib
[BsonElement("parentTagId")]
[JsonPropertyName("parentTagId")]
public string ParentTagId { get; set; } = null!;
public string[] ParentTagId { get; set; } = null!;
[BsonElement("slug")]
[JsonPropertyName("slug")]