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

payment method types

This commit is contained in:
Kyle Spearrin
2019-02-19 17:05:27 -05:00
parent 9c44fc1329
commit 36e65f08ca
3 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
import { PaymentMethodType } from '../../enums/paymentMethodType';
export class PaymentRequest {
paymentMethodType: PaymentMethodType;
paymentToken: string;
}