Skip to content

Commit

Permalink
Add GBP to currencies (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuncaserhat authored Feb 10, 2022
1 parent 5f15f59 commit 7e5f157
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/model/Currency.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
enum Currency {
TRY = 'TRY',
USD = 'USD',
EUR = 'EUR'
EUR = 'EUR',
GBP = 'GBP'
}

export default Currency;
2 changes: 1 addition & 1 deletion src/model/LoyaltyType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ enum LoyaltyType {
PostponingInstallment = 'POSTPONING_INSTALLMENT',
ExtraPoints = 'EXTRA_POINTS',
GainingMinutes = 'GAINING_MINUTES',
PostponingStatement = 'POSTPONING_STATEMENT',
PostponingStatement = 'POSTPONING_STATEMENT'
}

export default LoyaltyType;

0 comments on commit 7e5f157

Please sign in to comment.