mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
15 lines
294 B
C#
15 lines
294 B
C#
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; }
|
|
}
|
|
}
|