namespace LiteCharms.Features.TechShop.ShoppingCarts.Models; public class ShoppingCart { public Guid Id { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public Guid CustomerId { get; set; } public Guid? OrderId { get; set; } }