Spotify.NET/SpotifyAPI.Web/Models/Response/DeviceResponse.cs

10 lines
148 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class DeviceResponse
{
public List<Device> Devices { get; set; }
}
}