Kavita/Kavita.Models/DTOs/Reader/BookChapterItem.cs
Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

21 lines
608 B
C#

using System.Collections.Generic;
namespace Kavita.Models.DTOs.Reader;
public sealed record BookChapterItem
{
/// <summary>
/// Name of the Chapter
/// </summary>
public string Title { get; set; } = default!;
/// <summary>
/// A part represents the id of the anchor so we can scroll to it. 01_values.xhtml#h_sVZPaxUSy/
/// </summary>
public string Part { get; set; } = default!;
/// <summary>
/// Page Number to load for the chapter
/// </summary>
public int Page { get; set; }
public ICollection<BookChapterItem> Children { get; set; } = default!;
}