This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace LiteCharms.Features.TechShop.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; }
|
||||
}
|
||||
Reference in New Issue
Block a user