mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 11:09:06 +00:00
21 lines
619 B
C#
21 lines
619 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace VersOne.Epub.Schema
|
|
{
|
|
public class EpubNavigationPoint
|
|
{
|
|
public string Id { get; set; }
|
|
public string Class { get; set; }
|
|
public string PlayOrder { get; set; }
|
|
public List<EpubNavigationLabel> NavigationLabels { get; set; }
|
|
public EpubNavigationContent Content { get; set; }
|
|
public List<EpubNavigationPoint> ChildNavigationPoints { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return String.Format("Id: {0}, Content.Source: {1}", Id, Content.Source);
|
|
}
|
|
}
|
|
}
|