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

10 lines
176 B
C#

using System.Collections.Generic;
namespace VersOne.Epub.Schema
{
public class EpubSpine : List<EpubSpineItemRef>
{
public string Toc { get; set; }
}
}