mirror of
https://github.com/aljazceru/btcpayserver-docker.git
synced 2026-01-13 21:05:09 +01:00
51 lines
838 B
C#
51 lines
838 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DockerGenerator
|
|
{
|
|
public class CryptoDefinition
|
|
{
|
|
public string Crypto
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
public string CryptoFragment
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
public string CLightningFragment
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public static CryptoDefinition[] GetDefinitions()
|
|
{
|
|
return new[]
|
|
{
|
|
new CryptoDefinition()
|
|
{
|
|
Crypto = "ltc",
|
|
CryptoFragment = "litecoin",
|
|
CLightningFragment = "litecoin-clightning",
|
|
},
|
|
new CryptoDefinition()
|
|
{
|
|
Crypto = "btc",
|
|
CryptoFragment = "bitcoin",
|
|
CLightningFragment = "bitcoin-clightning",
|
|
},
|
|
new CryptoDefinition()
|
|
{
|
|
Crypto = "btg",
|
|
CryptoFragment = "bgold",
|
|
CLightningFragment = null,
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|