Files
pwa-player/go-backend/models.go
2025-02-02 03:54:03 +01:00

36 lines
467 B
Go

package main
import "time"
type Song struct {
MD5Hash string
Title string
Artist string
Creator string
Folder string
File string
Audio string
Mapper string
TotalTime time.Duration
Url string
Image string
}
type CollectionPreview struct {
name string
image string
index int
items int
}
type Collection struct {
name string
items int
Songs []Song
}
type ActiveSearch struct {
artist string
Songs []Song
}