Files
QuickLook/QuickLook.Plugin/QuickLook.Plugin.EpubViewer/EpubReader/Schema/Opf/EpubSpineItemRef.cs
2018-07-16 10:06:17 +02:00

16 lines
298 B
C#

using System;
namespace VersOne.Epub.Schema
{
public class EpubSpineItemRef
{
public string IdRef { get; set; }
public bool IsLinear { get; set; }
public override string ToString()
{
return String.Concat("IdRef: ", IdRef);
}
}
}