using System.Collections.Generic; namespace VersOne.Epub { public class EpubBook { public string FilePath { get; set; } public string Title { get; set; } public string Author { get; set; } public List AuthorList { get; set; } public EpubSchema Schema { get; set; } public EpubContent Content { get; set; } public byte[] CoverImage { get; set; } public List Chapters { get; set; } } }