mirror of
https://github.com/Belphemur/CBZOptimizer.git
synced 2025-10-13 20:18:52 +02:00
11 lines
264 B
Go
11 lines
264 B
Go
package packer
|
|
|
|
type Chapter struct {
|
|
// FilePath is the path to the chapter's directory.
|
|
FilePath string
|
|
// Pages is a slice of pointers to Page objects.
|
|
Pages []*Page
|
|
// ComicInfo is a string containing information about the chapter.
|
|
ComicInfoXml string
|
|
}
|