10 lines
293 B
C#
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);
|
|
}
|