Projektdateien hinzufügen.

This commit is contained in:
Webtree-design
2025-07-21 20:17:52 +02:00
parent b5367c704f
commit 16d38a8f39
44 changed files with 4613 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
public enum AddressType
{
Billing,
Shipping,
CustomerDefault
}

View File

@@ -0,0 +1 @@
public enum DiscountType { Percentage, FixedAmount }

View File

@@ -0,0 +1 @@
public enum OrderStatus { Pending, Processing, Shipped, Delivered, Cancelled, Refunded }

View File

@@ -0,0 +1,7 @@
public enum PaymentGatewayType
{
Stripe,
PayPal,
Klarna,
Manual // z.B. Vorkasse
}

View File

@@ -0,0 +1 @@
public enum PaymentStatus { Pending, Paid, Failed, Refunded }