mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-14 12:19:08 +00:00
Included epub library in plugin project
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user