7 lines
180 B
C#
7 lines
180 B
C#
namespace Hutopy.Modules.Tipping.Contracts;
|
|
|
|
public interface ITipPaymentNotifier
|
|
{
|
|
Task NotifyPaymentSucceedAsync(string stripeId, string invoiceUrl, CancellationToken ct);
|
|
}
|