Files
QuickLook/QuickLook.Plugin/QuickLook.Plugin.EpubViewer/EpubReader/Schema/Navigation/EpubNavigationPageTarget.cs
2018-07-16 10:06:17 +02:00

16 lines
489 B
C#

using System.Collections.Generic;
namespace VersOne.Epub.Schema
{
public class EpubNavigationPageTarget
{
public string Id { get; set; }
public string Value { get; set; }
public EpubNavigationPageTargetType Type { get; set; }
public string Class { get; set; }
public string PlayOrder { get; set; }
public List<EpubNavigationLabel> NavigationLabels { get; set; }
public EpubNavigationContent Content { get; set; }
}
}