Spotify.NET/SpotifyAPI/SpotifyWebAPI/Models/ArrayResponse.cs

15 lines
294 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
namespace SpotifyAPI.SpotifyWebAPI.Models
{
public class ListResponse<T> : BasicModel
{
public List<T> List { get; set; }
}
}