Adding song and album counts

This commit is contained in:
Deluan
2016-03-27 20:13:00 -04:00
parent 167e7a1825
commit 3cc92a32bd
9 changed files with 32 additions and 7 deletions
+3 -2
View File
@@ -1,8 +1,9 @@
package domain
type Artist struct {
Id string
Name string
Id string
Name string
AlbumCount int
}
type ArtistRepository interface {