| | namespace VersOne.Epub |
| | { |
| | |
| | |
| | |
| | public class EpubContent |
| | { |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public EpubContent(EpubLocalByteContentFile? cover = null, EpubLocalTextContentFile? navigationHtmlFile = null, |
| | EpubContentCollection<EpubLocalTextContentFile, EpubRemoteTextContentFile>? html = null, |
| | EpubContentCollection<EpubLocalTextContentFile, EpubRemoteTextContentFile>? css = null, |
| | EpubContentCollection<EpubLocalByteContentFile, EpubRemoteByteContentFile>? images = null, |
| | EpubContentCollection<EpubLocalByteContentFile, EpubRemoteByteContentFile>? fonts = null, |
| | EpubContentCollection<EpubLocalByteContentFile, EpubRemoteByteContentFile>? audio = null, |
| | EpubContentCollection<EpubLocalContentFile, EpubRemoteContentFile>? allFiles = null) |
| | { |
| | Cover = cover; |
| | NavigationHtmlFile = navigationHtmlFile; |
| | Html = html ?? new EpubContentCollection<EpubLocalTextContentFile, EpubRemoteTextContentFile>(); |
| | Css = css ?? new EpubContentCollection<EpubLocalTextContentFile, EpubRemoteTextContentFile>(); |
| | Images = images ?? new EpubContentCollection<EpubLocalByteContentFile, EpubRemoteByteContentFile>(); |
| | Fonts = fonts ?? new EpubContentCollection<EpubLocalByteContentFile, EpubRemoteByteContentFile>(); |
| | Audio = audio ?? new EpubContentCollection<EpubLocalByteContentFile, EpubRemoteByteContentFile>(); |
| | AllFiles = allFiles ?? new EpubContentCollection<EpubLocalContentFile, EpubRemoteContentFile>(); |
| | } |
| |
|
| | |
| | |
| | |
| | public EpubLocalByteContentFile? Cover { get; } |
| |
|
| | |
| | |
| | |
| | public EpubLocalTextContentFile? NavigationHtmlFile { get; } |
| |
|
| | |
| | |
| | |
| | public EpubContentCollection<EpubLocalTextContentFile, EpubRemoteTextContentFile> Html { get; } |
| |
|
| | |
| | |
| | |
| | public EpubContentCollection<EpubLocalTextContentFile, EpubRemoteTextContentFile> Css { get; } |
| |
|
| | |
| | |
| | |
| | public EpubContentCollection<EpubLocalByteContentFile, EpubRemoteByteContentFile> Images { get; } |
| |
|
| | |
| | |
| | |
| | public EpubContentCollection<EpubLocalByteContentFile, EpubRemoteByteContentFile> Fonts { get; } |
| |
|
| | |
| | |
| | |
| | public EpubContentCollection<EpubLocalByteContentFile, EpubRemoteByteContentFile> Audio { get; } |
| |
|
| | |
| | |
| | |
| | public EpubContentCollection<EpubLocalContentFile, EpubRemoteContentFile> AllFiles { get; } |
| | } |
| | } |
| |
|