mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 19:19:10 +00:00
10 lines
176 B
C#
10 lines
176 B
C#
using System.Collections.Generic;
|
|
|
|
namespace VersOne.Epub.Schema
|
|
{
|
|
public class EpubSpine : List<EpubSpineItemRef>
|
|
{
|
|
public string Toc { get; set; }
|
|
}
|
|
}
|