Skip to content

Commit 2da311f

Browse files
committed
Replace JObject with JsonObject
1 parent 07ce1ae commit 2da311f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using Newtonsoft.Json.Linq;
1+
using System.Text.Json.Nodes;
22
using System.Text.Json.Serialization;
33

44
namespace Umbraco.Forms.Integrations.Crm.Hubspot
55
{
66
internal class PropertiesRequestV3
77
{
88
[JsonPropertyName("properties")]
9-
public JObject Properties { get; set; } = new JObject();
9+
public JsonObject Properties { get; set; } = new JsonObject();
1010
}
1111
}

0 commit comments

Comments
 (0)