mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
11 lines
277 B
C#
11 lines
277 B
C#
|
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; }
|
||
|
}
|
||
|
}
|