2020-05-11 17:43:52 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class EpisodesResponse
|
|
|
|
{
|
2020-05-25 17:00:38 +01:00
|
|
|
public List<FullEpisode> Episodes { get; set; } = default!;
|
2020-05-11 17:43:52 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|