2020-03-09 19:47:39 +00:00
|
|
|
using System.Collections.Generic;
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
|
|
{
|
2020-03-09 19:47:39 +00:00
|
|
|
public class ListResponse<T> : BasicModel
|
|
|
|
{
|
|
|
|
public List<T> List { get; set; }
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
}
|