Kavita/API/DTOs/ReadingLists/ReadingListItemDto.cs
Joe Milazzo f7dca3806f
Epub Text Bleeding Finally Fixed! (#4086)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
Co-authored-by: Gazy Mahomar <gmahomarf@users.noreply.github.com>
Co-authored-by: Stefans.A <104719225+privatestefans@users.noreply.github.com>
2025-10-11 07:18:54 -07:00

50 lines
1.6 KiB
C#

using System;
using API.Entities.Enums;
namespace API.DTOs.ReadingLists;
#nullable enable
public sealed record 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 string? SeriesSortName { 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; }
public bool IsSpecial { get; set; }
}