Files
components/LiteCharms.Features/Shop/ShoppingCarts/Models/ShoppingCartPackage.cs
T
2026-05-14 02:46:07 +02:00

13 lines
263 B
C#

namespace LiteCharms.Features.Shop.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; }
}