1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00

paymentservice with stripe & braintree implem.

This commit is contained in:
Kyle Spearrin
2017-07-28 00:17:31 -04:00
parent c991d48cbc
commit 2dc9c196c4
13 changed files with 236 additions and 72 deletions

View File

@ -0,0 +1,10 @@
using System.Threading.Tasks;
using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
public interface IPaymentService
{
Task PurchasePremiumAsync(User user, string paymentToken, short additionalStorageGb);
}
}