mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
12 lines
339 B
C#
12 lines
339 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.RPC.Models
|
|
{
|
|
public class GetFeeEstimateResponse
|
|
{
|
|
[JsonProperty("fee")] public long Fee { get; set; }
|
|
[JsonProperty("status")] public string Status { get; set; }
|
|
[JsonProperty("untrusted")] public bool Untrusted { get; set; }
|
|
}
|
|
}
|