Spotify.NET/SpotifyAPI.Web/Models/Response/EpisodesResponse.cs
2020-05-11 18:55:35 +02:00

10 lines
156 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class EpisodesResponse
{
public List<FullEpisode> Episodes { get; set; }
}
}