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