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
24 lines (22 loc) · 954 Bytes
/
SimpleAlbum.cs
File metadata and controls
24 lines (22 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class SimpleAlbum
{
public string AlbumGroup { get; set; } = default!;
public string AlbumType { get; set; } = default!;
public List<SimpleArtist> Artists { get; set; } = default!;
public List<string> AvailableMarkets { get; set; } = default!;
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
public string Href { get; set; } = default!;
public string Id { get; set; } = default!;
public List<Image> Images { get; set; } = default!;
public string Name { get; set; } = default!;
public string ReleaseDate { get; set; } = default!;
public string ReleaseDatePrecision { get; set; } = default!;
public Dictionary<string, string> Restrictions { get; set; } = default!;
public int TotalTracks { get; set; }
public string Type { get; set; } = default!;
public string Uri { get; set; } = default!;
}
}