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