Collection Rework (#2830)
This commit is contained in:
parent
0dacc061f1
commit
deaaccb96a
93 changed files with 5413 additions and 1120 deletions
|
|
@ -29,6 +29,10 @@ public class AppUser : IdentityUser<int>, IHasConcurrencyToken
|
|||
/// </summary>
|
||||
public ICollection<ReadingList> ReadingLists { get; set; } = null!;
|
||||
/// <summary>
|
||||
/// Collections associated with this user
|
||||
/// </summary>
|
||||
public ICollection<AppUserCollection> Collections { get; set; } = null!;
|
||||
/// <summary>
|
||||
/// A list of Series the user want's to read
|
||||
/// </summary>
|
||||
public ICollection<AppUserWantToRead> WantToRead { get; set; } = null!;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue