mirror of
https://github.com/bitwarden/server.git
synced 2024-12-11 15:17:44 +01:00
11 lines
238 B
C#
11 lines
238 B
C#
|
using System.Threading.Tasks;
|
|||
|
using Bit.Core.Models.Table;
|
|||
|
|
|||
|
namespace Bit.Core.Services
|
|||
|
{
|
|||
|
public interface IPaymentService
|
|||
|
{
|
|||
|
Task PurchasePremiumAsync(User user, string paymentToken, short additionalStorageGb);
|
|||
|
}
|
|||
|
}
|