namespace LiteCharms.Features.TechShop.ShoppingCarts.Models; public class ShoppingCartPackage { public Guid Id { get; set; } public DateTime CreatedAt { get; set; } public Guid ShoppingCartId { get; set; } public Guid PackageId { get; set; } }