mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
16 lines
275 B
Go
16 lines
275 B
Go
package domain
|
|
|
|
type Artist struct {
|
|
Id string
|
|
Name string
|
|
}
|
|
|
|
type ArtistRepository interface {
|
|
BaseRepository
|
|
Put(m *Artist) error
|
|
Get(id string) (*Artist, error)
|
|
GetByName(name string) (*Artist, error)
|
|
PurgeInactive(active *Artists) error
|
|
}
|
|
|
|
type Artists []Artist
|