1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-19 02:51:14 +02:00

fix typo on billing response

This commit is contained in:
Kyle Spearrin 2018-06-29 16:55:04 -04:00
parent 3726d9e6d8
commit ef897695e9

View File

@ -72,13 +72,13 @@ export class BillingSubscriptionItemResponse {
name: string; name: string;
amount: number; amount: number;
quantity: number; quantity: number;
internal: string; interval: string;
constructor(response: any) { constructor(response: any) {
this.name = response.Name; this.name = response.Name;
this.amount = response.Amount; this.amount = response.Amount;
this.quantity = response.Quantity; this.quantity = response.Quantity;
this.internal = response.Internal; this.interval = response.Interval;
} }
} }