mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
034b732e7c
* GreenField: Update invoice metadata * add swagger Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
10 lines
166 B
C#
10 lines
166 B
C#
using Newtonsoft.Json.Linq;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class UpdateInvoiceRequest
|
|
{
|
|
public JObject Metadata { get; set; }
|
|
}
|
|
}
|