Spotify.NET/SpotifyAPI.Web/Models/ArrayResponse.cs
2020-03-09 20:47:39 +01:00

9 lines
160 B
C#

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