From 9f507a2b052d9594dcac0babb0c86c82df8f0139 Mon Sep 17 00:00:00 2001 From: Emre INAL <9061788+reywyn@users.noreply.github.com> Date: Thu, 6 Jun 2024 11:43:16 +0300 Subject: [PATCH] Adds multinet as APM (#176) --- Craftgate/Model/ApmType.cs | 2 ++ Craftgate/Model/PaymentMethod.cs | 2 ++ Craftgate/Model/PaymentProvider.cs | 1 + 3 files changed, 5 insertions(+) diff --git a/Craftgate/Model/ApmType.cs b/Craftgate/Model/ApmType.cs index d165db6..fc61bfe 100644 --- a/Craftgate/Model/ApmType.cs +++ b/Craftgate/Model/ApmType.cs @@ -25,6 +25,8 @@ public enum ApmType [EnumMember(Value = "TOM_FINANCE")] TOM_FINANCE, [EnumMember(Value = "PAYCELL")] PAYCELL, [EnumMember(Value = "HASO")] HASO, + [EnumMember(Value = "MULTINET")] MULTINET, + [EnumMember(Value = "MULTINET_GIFT")] MULTINET_GIFT, [EnumMember(Value = "FUND_TRANSFER")] FUND_TRANSFER, [EnumMember(Value = "CASH_ON_DELIVERY")] CASH_ON_DELIVERY } diff --git a/Craftgate/Model/PaymentMethod.cs b/Craftgate/Model/PaymentMethod.cs index 40ce5df..ff0cdb9 100644 --- a/Craftgate/Model/PaymentMethod.cs +++ b/Craftgate/Model/PaymentMethod.cs @@ -16,6 +16,8 @@ public enum PaymentMethod [EnumMember(Value = "KLARNA")] KLARNA, [EnumMember(Value = "AFTERPAY")] AFTERPAY, [EnumMember(Value = "STRIPE")] STRIPE, + [EnumMember(Value = "MULTINET")] MULTINET, + [EnumMember(Value = "MULTINET_GIFT")] MULTINET_GIFT, [EnumMember(Value = "INSTANT_TRANSFER")] INSTANT_TRANSFER } } \ No newline at end of file diff --git a/Craftgate/Model/PaymentProvider.cs b/Craftgate/Model/PaymentProvider.cs index b83a0c6..30d2345 100644 --- a/Craftgate/Model/PaymentProvider.cs +++ b/Craftgate/Model/PaymentProvider.cs @@ -30,6 +30,7 @@ public enum PaymentProvider [EnumMember(Value = "ALFABANK")] ALFABANK, [EnumMember(Value = "PAYCELL")] PAYCELL, [EnumMember(Value = "HASO")] HASO, + [EnumMember(Value = "MULTINET")] MULTINET, [EnumMember(Value = "OFFLINE")] OFFLINE } } \ No newline at end of file