From e5f2ae23599d6f395033b5a7f8ababc27de0106e Mon Sep 17 00:00:00 2001 From: Ciprian Jichici Date: Tue, 17 Dec 2024 03:22:30 +0200 Subject: [PATCH] Fix format of content artifact property bag --- .../Common/Models/Orchestration/Response/ContentArtifact.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotnet/Common/Models/Orchestration/Response/ContentArtifact.cs b/src/dotnet/Common/Models/Orchestration/Response/ContentArtifact.cs index 4f0765c57c..493ce011d7 100644 --- a/src/dotnet/Common/Models/Orchestration/Response/ContentArtifact.cs +++ b/src/dotnet/Common/Models/Orchestration/Response/ContentArtifact.cs @@ -47,5 +47,5 @@ public class ContentArtifact /// The metadata associated with the content. /// [JsonPropertyName("metadata")] - public Dictionary? Metadata { get; set; } + public Dictionary? Metadata { get; set; } }