mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 13:44:31 -04:00
* Allow admins to customize the amount of progress time or last item added time for on deck calculation * Implemented the ability to remove series from on deck. They will be removed until the user reads a new chapter. Quite a few db lookup reduction calls for reading based stuff, like continue point, bookmarks, etc.
12 lines
256 B
C#
12 lines
256 B
C#
namespace API.Entities;
|
|
|
|
public class AppUserOnDeckRemoval
|
|
{
|
|
public int Id { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public Series Series { get; set; }
|
|
public int AppUserId { get; set; }
|
|
public AppUser AppUser { get; set; }
|
|
|
|
}
|