diff --git a/SpotifyAPI.Web/Models/Response/FullAlbum.cs b/SpotifyAPI.Web/Models/Response/FullAlbum.cs deleted file mode 100644 index f118dc94e..000000000 --- a/SpotifyAPI.Web/Models/Response/FullAlbum.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System.Collections.Generic; - -namespace SpotifyAPI.Web -{ - public class FullAlbum - { - public string AlbumType { get; set; } = default!; - public List Artists { get; set; } = default!; - public List AvailableMarkets { get; set; } = default!; - public List Copyrights { get; set; } = default!; - public Dictionary ExternalIds { get; set; } = default!; - public Dictionary ExternalUrls { get; set; } = default!; - public List Genres { get; set; } = default!; - public string Href { get; set; } = default!; - public string Id { get; set; } = default!; - public List Images { get; set; } = default!; - public string Label { get; set; } = default!; - public string Name { get; set; } = default!; - public double Popularity { get; set; } - public string ReleaseDate { get; set; } = default!; - public string ReleaseDatePrecision { get; set; } = default!; - public Dictionary Restrictions { get; set; } = default!; - public int TotalTracks { get; set; } - public Paging Tracks { get; set; } = default!; - public string Type { get; set; } = default!; - public string Uri { get; set; } = default!; - } -} -