This commit is contained in:
Tizian.Breuch
2025-07-29 19:11:34 +02:00
parent 3907cba29d
commit 6fc6aaef3e
14 changed files with 375 additions and 31 deletions

View File

@@ -1,7 +1,12 @@
public enum PaymentGatewayType
// src/Webshop.Domain/Enums/PaymentGatewayType.cs
namespace Webshop.Domain.Enums
{
Stripe,
PayPal,
Klarna,
Manual // z.B. Vorkasse
public enum PaymentGatewayType
{
BankTransfer,
PayPal,
Stripe,
CashOnDelivery,
Invoice
}
}