Entity & rough internal API outline
This commit is contained in:
parent
8ed2fa3829
commit
23c4a451b4
15 changed files with 4695 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
using API.Data;
|
||||
using System.Collections.Generic;
|
||||
using API.Data;
|
||||
using API.Entities.Enums;
|
||||
using API.Entities.Enums.UserPreferences;
|
||||
|
||||
|
|
@ -8,6 +9,14 @@ public class AppUserPreferences
|
|||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
#region ReadingProfiles
|
||||
|
||||
public int DefaultReadingProfileId { get; set; }
|
||||
|
||||
public ICollection<AppUserReadingProfile> ReadingProfiles { get; set; } = null!;
|
||||
|
||||
#endregion
|
||||
|
||||
#region MangaReader
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue