mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 21:10:42 +02:00
45 lines
706 B
C#
45 lines
706 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",
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|