mirror of
https://github.com/bestnite/bilinovel-downloader.git
synced 2025-10-27 01:21:17 +00:00
start
This commit is contained in:
27
model/struct.go
Normal file
27
model/struct.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user