mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-10 17:29:08 +00:00
13 lines
215 B
C#
13 lines
215 B
C#
namespace VersOne.Epub.Schema
|
|
{
|
|
public class EpubNavigationLabel
|
|
{
|
|
public string Text { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Text;
|
|
}
|
|
}
|
|
}
|