Spotify.NET/SpotifyAPI/Web/Models/ArrayResponse.cs
2015-07-07 18:11:11 +02:00

9 lines
173 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web.Models
{
public class ListResponse<T> : BasicModel
{
public List<T> List { get; set; }
}
}