switch to jobj

This commit is contained in:
Kukks
2022-02-15 11:36:04 +01:00
committed by Andrew Camilleri
parent 1c5cf29540
commit 03bc91fd1e
4 changed files with 10 additions and 6 deletions

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using BTCPayServer.JsonConverters;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Linq;
namespace BTCPayServer.Client.Models
{
@@ -34,7 +35,7 @@ namespace BTCPayServer.Client.Models
public string PaymentMethod { get; set; }
public string CryptoCode { get; set; }
public Dictionary<string, object> AdditionalData { get; set; }
public Dictionary<string, JObject> AdditionalData { get; set; }
public class Payment
{