Spotify.NET/SpotifyAPI.Web/Models/Response/EpisodesResponse.cs

10 lines
156 B
C#
Raw Normal View History

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