diff --git a/src/Core/Enums/GatewayType.cs b/src/Core/Enums/GatewayType.cs index fbaf72df3..c283e5e68 100644 --- a/src/Core/Enums/GatewayType.cs +++ b/src/Core/Enums/GatewayType.cs @@ -16,5 +16,7 @@ namespace Bit.Core.Enums BitPay = 4, [Display(Name = "PayPal")] PayPal = 5, + [Display(Name = "Bank")] + Bank = 5, } } diff --git a/src/Core/Enums/PaymentMethodType.cs b/src/Core/Enums/PaymentMethodType.cs index 1069456b8..0821f211b 100644 --- a/src/Core/Enums/PaymentMethodType.cs +++ b/src/Core/Enums/PaymentMethodType.cs @@ -7,5 +7,6 @@ PayPal = 2, BitPay = 3, Credit = 4, + WireTransfer = 5, } }