1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05: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);
}
}