namespace FlowAPI.Application.Interfaces { public interface IPaymentService { Task CreateCheckoutSessionAsync(Guid userId); Task HandleWebhookAsync(string payload, string signature); } }