Files
social-media/src/Application/Common/Interfaces/IStripeService.cs
2024-04-24 19:37:35 -04:00

8 lines
162 B
C#

namespace Hutopy.Application.Common.Interfaces;
public interface IStripeService
{
public Task<string> CreateCheckoutSession(int amount, string currency);
}