mirror of
https://github.com/bestnite/bilinovel-downloader.git
synced 2025-04-27 02:35:54 +08:00
28 lines
469 B
Go
28 lines
469 B
Go
package model
|
|
|
|
type Chapter struct {
|
|
Title string
|
|
Url string
|
|
Content string
|
|
ImageOEBPSPaths []string
|
|
ImageFullPaths []string
|
|
TextOEBPSPath string
|
|
TextFullPath string
|
|
}
|
|
|
|
type Volume struct {
|
|
Title string
|
|
Url string
|
|
Cover string
|
|
Description string
|
|
Authors []string
|
|
Chapters []*Chapter
|
|
}
|
|
|
|
type Novel struct {
|
|
Title string
|
|
Description string
|
|
Authors []string
|
|
Volumes []*Volume
|
|
}
|