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