namespace FileFlows.Comic; /// /// Represents information about a comic book. /// public class ComicInfo { /// /// Gets or sets the title of the book. /// public string? Title { get; set; } /// /// Gets or sets the title of the series the book is part of. /// public string? Series { get; set; } /// /// Gets or sets a person or organization responsible for publishing, releasing, or issuing a resource. /// public string? Publisher { get; set; } /// /// Gets or sets the number of the book in the series. /// public int? Number { get; set; } /// /// Gets or sets the total number of books in the series. /// public int? Count { get; set; } /// /// Gets or sets the volume containing the book. /// public string? Volume { get; set; } /// /// Gets or sets the alternate series the book is part of. /// public string? AlternateSeries { get; set; } /// /// Gets or sets the alternate number of the book in the alternate series. /// public int? AlternateNumber { get; set; } /// /// Gets or sets the total number of books in the alternate series. /// public int? AlternateCount { get; set; } /// /// Gets or sets a description or summary of the book. /// public string? Summary { get; set; } /// /// Gets or sets any additional notes about the comic. /// public string? Notes { get; set; } /// /// Gets or sets the release date of the book. /// public DateTime? ReleaseDate { get; set; } /// /// Gets or sets optional tags for the comic book. /// public string[]? Tags { get; set; } }