mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-11 09:49:07 +00:00
15 lines
478 B
C#
15 lines
478 B
C#
using System.Collections.Generic;
|
|
|
|
namespace VersOne.Epub.Schema
|
|
{
|
|
public class EpubNavigation
|
|
{
|
|
public EpubNavigationHead Head { get; set; }
|
|
public EpubNavigationDocTitle DocTitle { get; set; }
|
|
public List<EpubNavigationDocAuthor> DocAuthors { get; set; }
|
|
public EpubNavigationMap NavMap { get; set; }
|
|
public EpubNavigationPageList PageList { get; set; }
|
|
public List<EpubNavigationList> NavLists { get; set; }
|
|
}
|
|
}
|