mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-15 18:35:55 -07:00
feat: v0.0.5
This commit is contained in:
parent
4c4ebc593d
commit
242a82ad8c
36 changed files with 694 additions and 174 deletions
|
|
@ -3,12 +3,13 @@ package models
|
|||
import "github.com/google/uuid"
|
||||
|
||||
type Track struct {
|
||||
ID int32 `json:"id"`
|
||||
Title string `json:"title"`
|
||||
Artists []SimpleArtist `json:"artists"`
|
||||
MbzID *uuid.UUID `json:"musicbrainz_id"`
|
||||
ListenCount int64 `json:"listen_count"`
|
||||
Duration int32 `json:"duration"`
|
||||
Image *uuid.UUID `json:"image"`
|
||||
AlbumID int32 `json:"album_id"`
|
||||
ID int32 `json:"id"`
|
||||
Title string `json:"title"`
|
||||
Artists []SimpleArtist `json:"artists"`
|
||||
MbzID *uuid.UUID `json:"musicbrainz_id"`
|
||||
ListenCount int64 `json:"listen_count"`
|
||||
Duration int32 `json:"duration"`
|
||||
Image *uuid.UUID `json:"image"`
|
||||
AlbumID int32 `json:"album_id"`
|
||||
TimeListened int64 `json:"time_listened"`
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue