Files
webzine/Webzine.Business/DTOs/Spotify/SpotifyTracksResponseDto.cs
2026-04-02 17:59:36 +02:00

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 ();
}
}