Files
ShopSolution-backend/Webshop.Application/DTOs/Shipping/CartItemDto.cs
Tizian.Breuch ee5abfd829 checkout
2025-11-26 17:02:18 +01:00

13 lines
288 B
C#

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; }
}
}