Initial commit
diff --git a/includes/payment-methods/class-wc-stripe-upe-payment-method-bancontact.php b/includes/payment-methods/class-wc-stripe-upe-payment-method-bancontact.php
new file mode 100644
index 0000000..89c04e0
--- /dev/null
+++ b/includes/payment-methods/class-wc-stripe-upe-payment-method-bancontact.php
@@ -0,0 +1,30 @@
+<?php
+if ( ! defined( 'ABSPATH' ) ) {
+	exit;
+}
+
+/**
+ * Bancontact Payment Method class extending UPE base class
+ */
+class WC_Stripe_UPE_Payment_Method_Bancontact extends WC_Stripe_UPE_Payment_Method {
+
+	const STRIPE_ID = 'bancontact';
+
+	const LPM_GATEWAY_CLASS = WC_Gateway_Stripe_Bancontact::class;
+
+	/**
+	 * Constructor for Bancontact payment method
+	 */
+	public function __construct() {
+		parent::__construct();
+		$this->stripe_id            = self::STRIPE_ID;
+		$this->title                = 'Pay with Bancontact';
+		$this->is_reusable          = true;
+		$this->supported_currencies = [ 'EUR' ];
+		$this->label                = __( 'Bancontact', 'woocommerce-gateway-stripe' );
+		$this->description          = __(
+			'Bancontact is the most popular online payment method in Belgium, with over 15 million cards in circulation.',
+			'woocommerce-gateway-stripe'
+		);
+	}
+}