checkout
This commit is contained in:
13
Webshop.Application/DTOs/Shipping/CartItemDto.cs
Normal file
13
Webshop.Application/DTOs/Shipping/CartItemDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user