mirror of
https://github.com/bitwarden/server.git
synced 2024-12-10 15:13:29 +01:00
11 lines
330 B
C#
11 lines
330 B
C#
using Bit.Billing.Models;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IAppleIapService
|
|
{
|
|
Task<AppleReceiptStatus> GetVerifiedReceiptStatusAsync(string receiptData);
|
|
Task SaveReceiptAsync(AppleReceiptStatus receiptStatus, Guid userId);
|
|
Task<Tuple<string, Guid?>> GetReceiptAsync(string originalTransactionId);
|
|
}
|