btcpayserver/BTCPayServer/Events/IHasInvoiceId.cs

13 lines
213 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Events
{
public interface IHasInvoiceId
{
string InvoiceId { get; }
}
}