namespace LiteCharms.Features.Shop.CartPackages.Models; public class PackageItem { public Guid Id { get; set; } public Guid PackageId { get; set; } public Guid ProductPriceId { get; set; } public DateTimeOffset CreatedAt { get; set; } public bool Active { get; set; } }