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