mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 11:09:06 +00:00
16 lines
303 B
C#
16 lines
303 B
C#
using System;
|
|
|
|
namespace VersOne.Epub.Schema
|
|
{
|
|
public class EpubNavigationContent
|
|
{
|
|
public string Id { get; set; }
|
|
public string Source { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return String.Concat("Source: " + Source);
|
|
}
|
|
}
|
|
}
|