Files
mangaGetter/internal/view/viewmodels.go
Pablu23 a8ba8728dc Added Last Chapter functionality to see how many more chapters you have, also kinda works as update Status bar
changed it to only load latest chapter instead of all chapters for manga
Added develop and release db from different locations
Added stopwatch for future performance improvement metrics
2024-03-01 14:31:38 +01:00

26 lines
350 B
Go

package view
type Image struct {
Path string
Index int
}
type ImageViewModel struct {
Title string
Images []Image
}
type MangaViewModel struct {
ID int
Title string
Number int
LastNumber int
LastTime string
Url string
ThumbnailUrl string
}
type MenuViewModel struct {
Mangas []MangaViewModel
}