mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-10 16:00:36 -07:00
17 lines
402 B
Go
17 lines
402 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Artist struct {
|
|
ID int32 `json:"id"`
|
|
MbzID *uuid.UUID `json:"musicbrainz_id"`
|
|
Name string `json:"name"`
|
|
Aliases []string `json:"aliases"`
|
|
Image *uuid.UUID `json:"image"`
|
|
ListenCount int64 `json:"listen_count"`
|
|
}
|
|
|
|
type SimpleArtist struct {
|
|
ID int32 `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|