Files
Nexus.Reader/src/NexusReader.Application/Abstractions/Services/IBillingService.cs
T

10 lines
293 B
C#

using NexusReader.Domain.Entities;
namespace NexusReader.Application.Abstractions.Services;
public interface IBillingService
{
Task<bool> HandleSubscriptionUpdatedAsync(string customerEmail, string stripeProductId);
Task<bool> HandleSubscriptionDeletedAsync(string customerEmail);
}