1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

add new gateway and payment method type

This commit is contained in:
Kyle Spearrin 2019-02-25 10:38:56 -05:00
parent b028696891
commit b229985256
2 changed files with 3 additions and 0 deletions

View File

@ -16,5 +16,7 @@ namespace Bit.Core.Enums
BitPay = 4, BitPay = 4,
[Display(Name = "PayPal")] [Display(Name = "PayPal")]
PayPal = 5, PayPal = 5,
[Display(Name = "Bank")]
Bank = 5,
} }
} }

View File

@ -7,5 +7,6 @@
PayPal = 2, PayPal = 2,
BitPay = 3, BitPay = 3,
Credit = 4, Credit = 4,
WireTransfer = 5,
} }
} }