Merge branch 'master' into feature/oauth

This commit is contained in:
Kamigen
2024-04-28 19:19:28 -04:00
23 changed files with 1185 additions and 53 deletions

View File

@@ -5,5 +5,6 @@ namespace Hutopy.Application.Common.Interfaces;
public interface IApplicationDbContext
{
DbSet<FutureCreator> FutureCreators { get; }
DbSet<UserTransaction> UserTransactions { get; }
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
}

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);
}