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

15 lines
309 B
C#

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