forked from JohnnyCrazy/SpotifyAPI-NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleAlbum.cs
More file actions
22 lines (21 loc) · 744 Bytes
/
Copy pathSimpleAlbum.cs
File metadata and controls
22 lines (21 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class SimpleAlbum
{
public string AlbumGroup { get; set; }
public string AlbumType { get; set; }
public List<SimpleArtist> Artists { get; set; }
public List<string> AvailableMarkets { get; set; }
public Dictionary<string, string> ExternalUrls { get; set; }
public string Href { get; set; }
public string Id { get; set; }
public List<Image> Images { get; set; }
public string Name { get; set; }
public string ReleaseDate { get; set; }
public string ReleaseDatePrecision { get; set; }
public Dictionary<string, string> Restrictions { get; set; }
public string Type { get; set; }
public string Uri { get; set; }
}
}