We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07ce1ae commit 2da311fCopy full SHA for 2da311f
src/Umbraco.Forms.Integrations.Crm.Hubspot/Models/Requests/PropertiesRequestV3.cs
@@ -1,11 +1,11 @@
1
-using Newtonsoft.Json.Linq;
+using System.Text.Json.Nodes;
2
using System.Text.Json.Serialization;
3
4
namespace Umbraco.Forms.Integrations.Crm.Hubspot
5
{
6
internal class PropertiesRequestV3
7
8
[JsonPropertyName("properties")]
9
- public JObject Properties { get; set; } = new JObject();
+ public JsonObject Properties { get; set; } = new JsonObject();
10
}
11
0 commit comments