Skip to content

Commit 5559c84

Browse files
authored
Added label property to FullAlbum
Fixes #199
1 parent 26b5f80 commit 5559c84

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

SpotifyAPI/Web/Models/FullAlbum.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ public class FullAlbum : BasicModel
3535

3636
[JsonProperty("images")]
3737
public List<Image> Images { get; set; }
38+
39+
[JsonProperty("label")]
40+
public string Label { get; set; }
3841

3942
[JsonProperty("name")]
4043
public string Name { get; set; }
@@ -57,4 +60,4 @@ public class FullAlbum : BasicModel
5760
[JsonProperty("uri")]
5861
public string Uri { get; set; }
5962
}
60-
}
63+
}

0 commit comments

Comments
 (0)