Projektdateien hinzufügen.
This commit is contained in:
6
Webshop.Domain/Enums/AddressType.cs
Normal file
6
Webshop.Domain/Enums/AddressType.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
public enum AddressType
|
||||
{
|
||||
Billing,
|
||||
Shipping,
|
||||
CustomerDefault
|
||||
}
|
||||
1
Webshop.Domain/Enums/DiscountType.cs
Normal file
1
Webshop.Domain/Enums/DiscountType.cs
Normal file
@@ -0,0 +1 @@
|
||||
public enum DiscountType { Percentage, FixedAmount }
|
||||
1
Webshop.Domain/Enums/OrderStatus.cs
Normal file
1
Webshop.Domain/Enums/OrderStatus.cs
Normal file
@@ -0,0 +1 @@
|
||||
public enum OrderStatus { Pending, Processing, Shipped, Delivered, Cancelled, Refunded }
|
||||
7
Webshop.Domain/Enums/PaymentGatewayType.cs
Normal file
7
Webshop.Domain/Enums/PaymentGatewayType.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
public enum PaymentGatewayType
|
||||
{
|
||||
Stripe,
|
||||
PayPal,
|
||||
Klarna,
|
||||
Manual // z.B. Vorkasse
|
||||
}
|
||||
1
Webshop.Domain/Enums/PaymentStatus.cs
Normal file
1
Webshop.Domain/Enums/PaymentStatus.cs
Normal file
@@ -0,0 +1 @@
|
||||
public enum PaymentStatus { Pending, Paid, Failed, Refunded }
|
||||
Reference in New Issue
Block a user