mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 11:09:06 +00:00
16 lines
489 B
C#
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; }
|
|
}
|
|
}
|