Indentation please...

This commit is contained in:
Vutov
2018-07-20 10:12:28 +03:00
parent 7e40ed6e29
commit 5e79b93b0a

View File

@@ -6,21 +6,21 @@ namespace DockerGenerator
{
public class CryptoDefinition
{
public string Crypto
{
get;
private set;
}
public string CryptoFragment
{
get;
private set;
}
public string CLightningFragment
{
get;
private set;
}
public string Crypto
{
get;
private set;
}
public string CryptoFragment
{
get;
private set;
}
public string CLightningFragment
{
get;
private set;
}
public string LNDFragment
{
get;
@@ -28,40 +28,40 @@ namespace DockerGenerator
}
public static CryptoDefinition[] GetDefinitions()
{
return new[]
{
new CryptoDefinition()
{
Crypto = "ltc",
CryptoFragment = "litecoin",
CLightningFragment = "litecoin-clightning",
{
return new[]
{
new CryptoDefinition()
{
Crypto = "ltc",
CryptoFragment = "litecoin",
CLightningFragment = "litecoin-clightning",
LNDFragment = "litecoin-lnd"
},
new CryptoDefinition()
{
Crypto = "btc",
CryptoFragment = "bitcoin",
CLightningFragment = "bitcoin-clightning",
new CryptoDefinition()
{
Crypto = "btc",
CryptoFragment = "bitcoin",
CLightningFragment = "bitcoin-clightning",
LNDFragment = "bitcoin-lnd"
},
new CryptoDefinition()
{
Crypto = "btg",
CryptoFragment = "bgold",
LNDFragment = "bgold-lnd"
},
new CryptoDefinition()
{
Crypto = "ftc",
CryptoFragment = "feathercoin"
},
new CryptoDefinition()
{
Crypto = "btg",
CryptoFragment = "bgold",
LNDFragment = "bgold-lnd"
},
new CryptoDefinition()
{
Crypto = "ftc",
CryptoFragment = "feathercoin"
},
new CryptoDefinition()
{
Crypto = "grs",
CryptoFragment = "groestlcoin"
}
};
}
}
}
}