mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-07 21:48:18 -08:00
* add all time rank to item pages * fix artist albums component * add no rows check * fix rewind page
16 lines
582 B
Go
16 lines
582 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Album struct {
|
|
ID int32 `json:"id"`
|
|
MbzID *uuid.UUID `json:"musicbrainz_id"`
|
|
Title string `json:"title"`
|
|
Image *uuid.UUID `json:"image"`
|
|
Artists []SimpleArtist `json:"artists"`
|
|
VariousArtists bool `json:"is_various_artists"`
|
|
ListenCount int64 `json:"listen_count"`
|
|
TimeListened int64 `json:"time_listened"`
|
|
FirstListen int64 `json:"first_listen"`
|
|
AllTimeRank int64 `json:"all_time_rank"`
|
|
}
|