mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 23:54:26 +01:00
14 lines
402 B
C#
14 lines
402 B
C#
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; }
|
|
} |