[GreenField] Add additional data to allow roundtrip of upper version fields

This commit is contained in:
nicolas.dorier
2020-05-31 11:51:36 +09:00
parent ebc99adc58
commit 5099f98d2a
2 changed files with 10 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
using System;
using System.Collections.Generic;
using BTCPayServer.JsonConverters;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace BTCPayServer.Client.Models
{
@@ -17,5 +19,8 @@ namespace BTCPayServer.Client.Models
public string EmbeddedCSS { get; set; }
public string CustomCSSLink { get; set; }
public bool AllowCustomPaymentAmounts { get; set; }
[JsonExtensionData]
public IDictionary<string, JToken> AdditionalData { get; set; }
}
}