This commit is contained in:
2025-04-20 00:32:41 +10:00
commit 9a098b205a
26 changed files with 1839 additions and 0 deletions

27
model/struct.go Normal file
View File

@ -0,0 +1,27 @@
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
}