mirror of
https://github.com/bitwarden/server.git
synced 2025-06-14 15:00:49 -05:00

* Update ProviderInvoiceItem SQL configuration * Implement provider client invoice export * Add tests * Run dotnet format * Fixed SPROC backwards compatibility issue
9 lines
149 B
C#
9 lines
149 B
C#
using Stripe;
|
|
|
|
namespace Bit.Billing.Services;
|
|
|
|
public interface IProviderEventService
|
|
{
|
|
Task TryRecordInvoiceLineItems(Event parsedEvent);
|
|
}
|