mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
* GreenField: Add FeeRate To Wallets API closes #1846 * make dedicated endpoint for fee rate * remove unused call
12 lines
260 B
C#
12 lines
260 B
C#
using BTCPayServer.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class OnChainWalletOverviewData
|
|
{
|
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
|
public decimal Balance { get; set; }
|
|
}
|
|
}
|