Refactoring to a cleaner architecture
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package domain
|
||||
|
||||
type Album struct {
|
||||
Id string
|
||||
Name string
|
||||
ArtistId string `parent:"artist"`
|
||||
CoverArtPath string // TODO http://stackoverflow.com/questions/13795842/linking-itunes-itc2-files-and-ituneslibrary-xml
|
||||
Year int
|
||||
Compilation bool
|
||||
Rating int
|
||||
}
|
||||
Reference in New Issue
Block a user