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; }
|
2018-07-19 12:31:17 +02:00
|
|
|
|
}
|
|
|
|
|
}
|