mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-11 17:59:17 +00:00
14 lines
496 B
C#
14 lines
496 B
C#
using System.Collections.Generic;
|
|
|
|
namespace VersOne.Epub
|
|
{
|
|
public class EpubContentRef
|
|
{
|
|
public Dictionary<string, EpubTextContentFileRef> Html { get; set; }
|
|
public Dictionary<string, EpubTextContentFileRef> Css { get; set; }
|
|
public Dictionary<string, EpubByteContentFileRef> Images { get; set; }
|
|
public Dictionary<string, EpubByteContentFileRef> Fonts { get; set; }
|
|
public Dictionary<string, EpubContentFileRef> AllFiles { get; set; }
|
|
}
|
|
}
|