﻿namespace KernelRecordsMVC.Models;

public class Wishlist
{
    public long WishlistId { get; set; }

    public long UserId { get; set; }

    public User User { get; set; } = null!;

    public ICollection<WishlistProduct> WishlistProducts { get; set; }
        = new List<WishlistProduct>();
}