Spotify.NET/SpotifyAPI/Web/Models/SimpleAlbum.cs

36 lines
902 B
C#
Raw Normal View History

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace SpotifyAPI.Web.Models
{
public class SimpleAlbum : BasicModel
{
[JsonProperty("album_type")]
public String AlbumType { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("available_markets")]
public List<String> AvailableMarkets { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("external_urls")]
public Dictionary<String, String> ExternalUrls { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("href")]
public String Href { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("id")]
public String Id { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("images")]
public List<Image> Images { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("name")]
public String Name { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("type")]
public String Type { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("uri")]
public String Uri { get; set; }
}
2015-07-26 13:02:22 +01:00
}