11 lines
235 B
C#
11 lines
235 B
C#
namespace Hutopy.Modules.Tipping.Contracts;
|
|
|
|
internal interface ITipPaymentNotifier
|
|
{
|
|
Task NotifyPaymentSucceedAsync(
|
|
string sessionId,
|
|
Uri receiptUrl,
|
|
string customerEmail,
|
|
CancellationToken ct);
|
|
}
|