From b5d608b406ae1a80d78b600f79d85d452c302fd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sercan=20G=C3=BCnver?= Date: Wed, 10 Jan 2024 00:58:43 +0300 Subject: [PATCH] Delete SpotifyAPI.Web/Models/Response/FullAlbum.cs --- SpotifyAPI.Web/Models/Response/FullAlbum.cs | 29 --------------------- 1 file changed, 29 deletions(-) delete mode 100644 SpotifyAPI.Web/Models/Response/FullAlbum.cs 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!; - } -} -