From 192c959d39422b56c5fd7aba53a1c52e89b5d754 Mon Sep 17 00:00:00 2001 From: michalcourson Date: Tue, 24 Feb 2026 21:16:12 -0500 Subject: [PATCH] * 'Line 1: Ensure both 'Newtonsoft.Json' and 'Newtonsoft.Json.Converters' namespaces are included, as JsonPropertyAttribute and StringEnumConverter are defined in these namespaces. This resolves the CS0246 error for missing JsonPropertyAttribute.' in file 'stream_deck_plugin\ClipTrimDotNet\Client\ClipMetadata.cs' --- stream_deck_plugin/ClipTrimDotNet/Client/ClipMetadata.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/stream_deck_plugin/ClipTrimDotNet/Client/ClipMetadata.cs b/stream_deck_plugin/ClipTrimDotNet/Client/ClipMetadata.cs index 36f6643..394324f 100644 --- a/stream_deck_plugin/ClipTrimDotNet/Client/ClipMetadata.cs +++ b/stream_deck_plugin/ClipTrimDotNet/Client/ClipMetadata.cs @@ -1,5 +1,6 @@ using Newtonsoft.Json; using Newtonsoft.Json.Converters; +using Newtonsoft.Json.Converters; using System; using System.Collections.Generic; using System.Linq;