File size: 377 Bytes
1e653a4
 
ccc2569
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;

namespace DbConnect.Entities;

public partial class WishlistItem
{
    public int Id { get; set; }

    public Guid UserId { get; set; }

    public int BookId { get; set; }

    public DateTime AddedAt { get; set; }

    public virtual Book Book { get; set; } = null!;

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