17 lines
361 B
C#
17 lines
361 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 DateTimeOffset CreatedAt { get; set; }
|
|
|
|
public DateTimeOffset UpdatedAt { get; set; }
|
|
|
|
public int Quantity { get; set; }
|
|
}
|