1
0
mirror of https://github.com/bestnite/bilinovel-downloader.git synced 2025-12-13 09:50:15 +00:00
Files
bilinovel-downloader/model/struct.go
2025-04-20 01:13:51 +10:00

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
}