Skip to content

Commit

Permalink
Add editorial notes
Browse files Browse the repository at this point in the history
  • Loading branch information
stevesoltys committed Oct 21, 2020
1 parent 9295a1b commit a111251
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
11 changes: 11 additions & 0 deletions src/main/kotlin/com/stevesoltys/applemusic/model/EditorialNotes.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.stevesoltys.applemusic.model

/**
* @author Steve Soltys
*/
class EditorialNotes {

var short: String? = null

var standard: String? = null
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ package com.stevesoltys.applemusic.model.album

import com.fasterxml.jackson.annotation.JsonProperty
import com.stevesoltys.applemusic.model.Artwork
import com.stevesoltys.applemusic.model.EditorialNotes

/**
* @author Steve Soltys
*/
class AlbumAttributes {

// TODO: Editorial notes
var editorialNotes: EditorialNotes? = null

@JsonProperty("albumName")
var musicVideoAlbumName: String? = null
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package com.stevesoltys.applemusic.model.artist

import com.stevesoltys.applemusic.model.EditorialNotes

/**
* @author Steve Soltys
*/
class ArtistAttributes {

// TODO: Editorial notes
var editorialNotes: EditorialNotes? = null

var genreNames: Array<String>? = null

Expand Down

0 comments on commit a111251

Please sign in to comment.