From b22998525613bd6fa266082d69586d01fbd9004d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 25 Feb 2019 10:38:56 -0500 Subject: [PATCH] add new gateway and payment method type --- src/Core/Enums/GatewayType.cs | 2 ++ src/Core/Enums/PaymentMethodType.cs | 1 + 2 files changed, 3 insertions(+) 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, } }