Spaces:
Running
Running
| namespace FlowAPI.Application.Interfaces | |
| { | |
| public interface IPaymentService | |
| { | |
| Task<string> CreateCheckoutSessionAsync(Guid userId); | |
| Task<bool> HandleWebhookAsync(string payload, string signature); | |
| } | |
| } | |