using Bit.Billing.Models; namespace Bit.Core.Services; public interface IAppleIapService { Task GetVerifiedReceiptStatusAsync(string receiptData); Task SaveReceiptAsync(AppleReceiptStatus receiptStatus, Guid userId); Task> GetReceiptAsync(string originalTransactionId); }