mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +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; }
|
|
}
|
|
}
|