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

15 lines
297 B
C#

namespace LiteCharms.Features.Shop.ShoppingCarts.Models;
public class ShoppingCart
{
public Guid Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public Guid CustomerId { get; set; }
public Guid? OrderId { get; set; }
}