using System; using System.Collections.Generic; using Webshop.Application.DTOs.Shipping; // Oder wo CartItemDto liegt 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(); public decimal TotalEstimatedPrice { get; set; } // Optional: Summe berechnet } }