btcpayserver/BTCPayServer.Client/Models/WebhookInvoiceEvent.cs

17 lines
388 B
C#
Raw Normal View History

2020-11-06 20:42:26 +09:00
using System;
using System.Collections.Generic;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace BTCPayServer.Client.Models
{
public class WebhookInvoiceEvent : WebhookEvent
{
[JsonProperty(Order = 1)]
public string StoreId { get; set; }
[JsonProperty(Order = 2)]
public string InvoiceId { get; set; }
}
}