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

11 lines
169 B
C#
Raw Normal View History

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-25 17:00:38 +01:00