mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 06:20:33 -04:00
47 lines
1.5 KiB
C#
47 lines
1.5 KiB
C#
using System;
|
|
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.ReadingLists;
|
|
#nullable enable
|
|
|
|
public class ReadingListItemDto
|
|
{
|
|
public int Id { get; init; }
|
|
public int Order { get; init; }
|
|
public int ChapterId { get; init; }
|
|
public int SeriesId { get; init; }
|
|
public string? SeriesName { get; set; }
|
|
public MangaFormat SeriesFormat { get; set; }
|
|
public int PagesRead { get; set; }
|
|
public int PagesTotal { get; set; }
|
|
public string? ChapterNumber { get; set; }
|
|
public string? VolumeNumber { get; set; }
|
|
public string? ChapterTitleName { get; set; }
|
|
public int VolumeId { get; set; }
|
|
public int LibraryId { get; set; }
|
|
public string? Title { get; set; }
|
|
public LibraryType LibraryType { get; set; }
|
|
public string? LibraryName { get; set; }
|
|
/// <summary>
|
|
/// Release Date from Chapter
|
|
/// </summary>
|
|
public DateTime ReleaseDate { get; set; }
|
|
/// <summary>
|
|
/// Used internally only
|
|
/// </summary>
|
|
public int ReadingListId { get; set; }
|
|
/// <summary>
|
|
/// The last time a reading list item (underlying chapter) was read by current authenticated user
|
|
/// </summary>
|
|
public DateTime LastReadingProgressUtc { get; set; }
|
|
/// <summary>
|
|
/// File size of underlying item
|
|
/// </summary>
|
|
/// <remarks>This is only used for CDisplayEx</remarks>
|
|
public long FileSize { get; set; }
|
|
/// <summary>
|
|
/// The chapter summary
|
|
/// </summary>
|
|
public string? Summary { get; set; }
|
|
}
|