2018-07-19 19:31:17 +09:00
|
|
|
namespace BTCPayServer.Services
|
|
|
|
{
|
|
|
|
public class MigrationSettings
|
|
|
|
{
|
|
|
|
public bool UnreachableStoreCheck { get; set; }
|
|
|
|
public bool DeprecatedLightningConnectionStringCheck { get; set; }
|
2018-08-01 18:38:46 +09:00
|
|
|
public bool ConvertMultiplierToSpread { get; set; }
|
2019-01-05 00:37:09 +09:00
|
|
|
public bool ConvertNetworkFeeProperty { get; set; }
|
2019-02-19 12:53:24 +09:00
|
|
|
public bool ConvertCrowdfundOldSettings { get; set; }
|
2019-05-08 23:39:11 +09:00
|
|
|
public bool ConvertWalletKeyPathRoots { get; set; }
|
2019-11-06 14:31:45 +09:00
|
|
|
public bool CheckedFirstRun { get; set; }
|
2019-08-27 23:30:25 +09:00
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
return string.Empty;
|
|
|
|
}
|
2018-07-19 19:31:17 +09:00
|
|
|
}
|
|
|
|
}
|