1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 11:13:27 +00:00

Apple Iap service

This commit is contained in:
Kyle Spearrin
2019-09-16 09:22:22 -04:00
parent d009aa57c0
commit 9e51eaea28
4 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace Bit.Core.Services
{
public interface IAppleIapService
{
Task<bool> VerifyReceiptAsync(string receiptData);
}
}