Kavita/API/DTOs/ReadingLists/ReadingListItemDto.cs
Joe Milazzo a847468a6c
Colorscape Love (#3326)
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2024-10-31 16:44:03 -07:00

48 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; }
public bool IsSpecial { get; set; }
}