15 lines
301 B
C#
15 lines
301 B
C#
namespace LiteCharms.Features.TechShop.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; }
|
|
}
|