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