mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
12 lines
268 B
C#
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();
|
|
}
|
|
}
|