Make sideshift extend prism in a better way

This commit is contained in:
Kukks
2023-07-18 11:23:06 +02:00
parent 8bab2d7660
commit ae50cba71e
10 changed files with 160 additions and 113 deletions

View File

@@ -0,0 +1,14 @@
using Newtonsoft.Json.Linq;
namespace BTCPayServer.Plugins.SideShift;
public class SideShiftAvailableCoin
{
public string coin { get; set; }
public string[] networks { get; set; }
public string name { get; set; }
public bool hasMemo { get; set; }
public JToken fixedOnly { get; set; }
public JToken variableOnly { get; set; }
public JToken settleOffline { get; set; }
}