mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-10 09:19:06 +00:00
12 lines
259 B
C#
12 lines
259 B
C#
using VersOne.Epub.Schema;
|
|
|
|
namespace VersOne.Epub
|
|
{
|
|
public class EpubSchema
|
|
{
|
|
public EpubPackage Package { get; set; }
|
|
public EpubNavigation Navigation { get; set; }
|
|
public string ContentDirectoryPath { get; set; }
|
|
}
|
|
}
|