mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
17 lines
388 B
C#
17 lines
388 B
C#
|
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; }
|
||
|
}
|
||
|
}
|