Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.FujiOracle/FujiOracleSettings.cs
2023-01-16 13:13:18 +01:00

12 lines
268 B
C#

using System.Collections.Generic;
namespace BTCPayServer.Plugins.FujiOracle
{
public class FujiOracleSettings
{
public bool Enabled { get; set; }
public string Key { get; set; }
public List<string> Pairs { get; set; } = new();
}
}