using System.Collections.Generic; namespace VersOne.Epub.Schema { /// /// EPUB 2 guide. Provides machine-processable navigation to the key structural components of the EPUB book (e.g., cover page, table of contents, etc.). /// /// See /// and for more information. /// /// public class EpubGuide { /// /// Initializes a new instance of the class. /// /// A list of EPUB 2 guide references to the key structural components of the EPUB book (e.g., cover page, table of contents, etc.). public EpubGuide(List? items = null) { Items = items ?? new List(); } /// /// Gets a list of EPUB 2 guide references to the key structural components of the EPUB book (e.g., cover page, table of contents, etc.). /// /// See /// and for more information. /// /// public List Items { get; } } }