FlowAPI / FlowAPI.Application /Interfaces /IPaymentService.cs
danylokhodus's picture
init
b9c7f0e
Raw
History Blame Contribute Delete
229 Bytes
namespace FlowAPI.Application.Interfaces
{
public interface IPaymentService
{
Task<string> CreateCheckoutSessionAsync(Guid userId);
Task<bool> HandleWebhookAsync(string payload, string signature);
}
}