#145 : Ajout du seeder Spotify.
This commit is contained in:
16
Webzine.Business/DTOs/Spotify/SpotifyAlbumsResponseDto.cs
Normal file
16
Webzine.Business/DTOs/Spotify/SpotifyAlbumsResponseDto.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Webzine.Business.DTOs.Spotify
|
||||
{
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
/// <summary>
|
||||
/// Objet Spotify qui contient une liste d'album.
|
||||
/// </summary>
|
||||
public class SpotifyAlbumsResponseDto
|
||||
{
|
||||
/// <summary>
|
||||
/// Container de plusieurs albums spotify.
|
||||
/// </summary>
|
||||
[JsonPropertyName("items")]
|
||||
public List<SpotifyAlbumDto> Items { get; set; } = new ();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user