16 lines
436 B
C#
16 lines
436 B
C#
namespace Webzine.Business.DTOs.Spotify
|
|
{
|
|
using System.Text.Json.Serialization;
|
|
|
|
/// <summary>
|
|
/// Reponse spotify qui contient une liste de tracks.
|
|
/// </summary>
|
|
public class SpotifyTracksResponseDto
|
|
{
|
|
/// <summary>
|
|
/// Container qui contient plusieurs tracks.
|
|
/// </summary>
|
|
[JsonPropertyName("items")]
|
|
public List<SpotifyTrackDto> Items { get; set; } = new ();
|
|
}
|
|
} |