Well this doesnt work yet, and is likely not the correct way, this needs more thought put into it, probably a complete rewrite is advisable because bringing this into a shape where it could have multiple Providers is hard

This commit is contained in:
Pablu23
2024-02-26 22:21:59 +01:00
parent 87ec7aa1a8
commit 18d9ecf4ad
11 changed files with 234 additions and 115 deletions

View File

@@ -0,0 +1,11 @@
package database
type Chapter struct {
Id int
Manga *Manga
InternalIdentifier string
Url string
Name string
Number int
TimeStampUnix int64
}