Files
QuickLook/QuickLook.Plugin/VersOne.Epub/RefEntities/EpubContentRef.cs
2018-07-16 09:46:52 +02:00

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; }
}
}