Files
components/LiteCharms.Features/Shop/ShoppingCarts/Models/ShoppingCartPackage.cs
T
2026-05-13 20:06:24 +02:00

13 lines
269 B
C#

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