mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
* 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; }
|
|
}
|
|
}
|