mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-29 03:44:27 +01:00
27 lines
593 B
C#
27 lines
593 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using NBitcoin;
|
|
|
|
namespace BTCPayServer
|
|
{
|
|
public class BTCPayNetwork
|
|
{
|
|
public Network NBitcoinNetwork { get; set; }
|
|
public string CryptoCode { get; internal set; }
|
|
public string BlockExplorerLink { get; internal set; }
|
|
public string UriScheme { get; internal set; }
|
|
|
|
|
|
[Obsolete("Should not be needed")]
|
|
public bool IsBTC
|
|
{
|
|
get
|
|
{
|
|
return CryptoCode == "BTC";
|
|
}
|
|
}
|
|
}
|
|
}
|