mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 19:19:10 +00:00
14 lines
478 B
C#
14 lines
478 B
C#
using System.Collections.Generic;
|
|
|
|
namespace VersOne.Epub
|
|
{
|
|
public class EpubContent
|
|
{
|
|
public Dictionary<string, EpubTextContentFile> Html { get; set; }
|
|
public Dictionary<string, EpubTextContentFile> Css { get; set; }
|
|
public Dictionary<string, EpubByteContentFile> Images { get; set; }
|
|
public Dictionary<string, EpubByteContentFile> Fonts { get; set; }
|
|
public Dictionary<string, EpubContentFile> AllFiles { get; set; }
|
|
}
|
|
}
|