mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-01 13:14:30 +01:00
10 lines
202 B
C#
10 lines
202 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.RPC.Models
|
|
{
|
|
public partial class MakeUriResponse
|
|
{
|
|
[JsonProperty("uri")] public string Uri { get; set; }
|
|
}
|
|
}
|