Files
components/LiteCharms.Models/ShoppingCartPackage.cs
T
Khwezi Mngoma 32d1019eb5
continuous-integration/drone/pr Build is passing
Migrated database changes
2026-05-10 11:16:52 +02:00

13 lines
241 B
C#

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