#27 small changes for the userTransaction

This commit is contained in:
Dominic Villemure
2024-04-24 19:37:35 -04:00
parent bd6028c524
commit 6883855ecb
4 changed files with 15 additions and 11 deletions

View File

@@ -3,5 +3,5 @@ namespace Hutopy.Application.Common.Interfaces;
public interface IStripeService
{
public Task<string> CreateCheckoutSession(int price, string currency);
public Task<string> CreateCheckoutSession(int amount, string currency);
}