Files
components/LiteCharms.Features/Shop/ShoppingCarts/Models/ShoppingCartItem.cs
T
2026-05-14 02:46:07 +02:00

17 lines
350 B
C#

namespace LiteCharms.Features.Shop.ShoppingCarts.Models;
public class ShoppingCartItem
{
public Guid Id { get; set; }
public Guid ShoppingCartId { get; set; }
public Guid ProductPriceId { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public int Quantity { get; set; }
}