btcpayserver/BTCPayServer/Configuration/NBXplorerConnectionSetting.cs

12 lines
278 B
C#
Raw Normal View History

using System;
namespace BTCPayServer.Configuration
{
public class NBXplorerConnectionSetting
{
public string CryptoCode { get; internal set; }
public Uri ExplorerUri { get; internal set; }
public string CookieFile { get; internal set; }
}
2021-12-31 08:59:02 +01:00
}