fix
All checks were successful
Branch - test - Build and Push Backend API Docker Image / build-and-push (push) Successful in 25s
All checks were successful
Branch - test - Build and Push Backend API Docker Image / build-and-push (push) Successful in 25s
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Webshop.Application.DTOs.Shipping; // Oder wo CartItemDto liegt
|
||||
using Webshop.Application.DTOs.Shipping; // Wichtig für CartItemDto
|
||||
|
||||
namespace Webshop.Application.DTOs.Customers
|
||||
{
|
||||
@@ -9,6 +9,8 @@ namespace Webshop.Application.DTOs.Customers
|
||||
public Guid Id { get; set; }
|
||||
public string UserId { get; set; } = string.Empty;
|
||||
public List<CartItemDto> Items { get; set; } = new List<CartItemDto>();
|
||||
public decimal TotalEstimatedPrice { get; set; } // Optional: Summe berechnet
|
||||
|
||||
// Optional: Gesamtsumme zur Anzeige im Frontend
|
||||
public decimal TotalPrice { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user