btcpayserver/BTCPayServer.Client/Models/UpdateInvoiceRequest.cs

10 lines
166 B
C#
Raw Normal View History

using Newtonsoft.Json.Linq;
namespace BTCPayServer.Client.Models
{
public class UpdateInvoiceRequest
{
public JObject Metadata { get; set; }
}
}