mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-18 12:57:41 +03:00
15 lines
219 B
Go
15 lines
219 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)
|
|
}
|
|
|