This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user