using System; using System.Collections.Generic; using Webshop.Application.DTOs.Shipping; // Wichtig für CartItemDto namespace Webshop.Application.DTOs.Customers { public class CartDto { public Guid Id { get; set; } public string UserId { get; set; } = string.Empty; public List Items { get; set; } = new List(); // Optional: Gesamtsumme zur Anzeige im Frontend public decimal TotalPrice { get; set; } } }