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

10 lines
149 B
C#
Raw Normal View History

2020-05-02 21:48:21 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class ShowsResponse
{
public List<SimpleShow> Shows { get; set; }
}
}