Spotify.NET/SpotifyAPI.Web/Models/ArrayResponse.cs
2018-08-24 14:10:13 +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; }
}
}