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