13 lines
288 B
C#
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; }
|
|
}
|
|
} |