namespace NexusReader.Application.Queries.Reader; /// /// Represents metadata extracted from a local EPUB file. /// public record LocalEpubMetadata { /// /// The title of the book. /// public string Title { get; set; } = string.Empty; /// /// The author(s) of the book. /// public string Author { get; set; } = string.Empty; /// /// The raw bytes of the cover image, if available. /// public byte[]? CoverImage { get; set; } /// /// The description or summary of the book. /// public string? Description { get; set; } }