namespace VersOne.Epub.WpfDemo.ViewModels { /// /// View model for a library item (i.e. a book that is displayed in the library view). /// public class LibraryItemViewModel { /// /// Gets or sets the unique identifier of the book in the library view. Contains the same value as . /// public int Id { get; set; } /// /// Gets or sets the title of the book in the library view. /// public string Title { get; set; } /// /// Gets or sets the content of the cover image of the book in the library view. /// public byte[] CoverImage { get; set; } } }