mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-04 22:25:36 -04:00
* Moved bookmarks to it's own page on side nav and integrated actions. * Implemented the ability to read bookmarks in the manga reader. * Removed old bookmark components that aren't needed any longer. * Removed recently added component as we use all-series instead now * Removed bookmark tab from card detail * Fixed scroll to top not working and being missing * When opening the side nav on mobile with metadata filter already open, collapse the filter. * When on mobile viewports, when clicking an item from side nav, collapse it afterwards * Converted most of series detail to use the card detail layout, except storyline which has custom logic * Fixed unit test
14 lines
345 B
C#
14 lines
345 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Reader;
|
|
|
|
public class BookmarkInfoDto
|
|
{
|
|
public string SeriesName { get; set; }
|
|
public MangaFormat SeriesFormat { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public int LibraryId { get; set; }
|
|
public LibraryType LibraryType { get; set; }
|
|
public int Pages { get; set; }
|
|
}
|