using System; namespace Webshop.Application.DTOs.Shipping { public class CartItemDto { public Guid ProductId { get; set; } public int Quantity { get; set; } // +++ DIESE ZEILE HAT GEFEHLT +++ public Guid? ProductVariantId { get; set; } } }