8 lines
162 B
C#
8 lines
162 B
C#
namespace Hutopy.Application.Common.Interfaces;
|
|
|
|
|
|
public interface IStripeService
|
|
{
|
|
public Task<string> CreateCheckoutSession(int amount, string currency);
|
|
}
|