mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
13 lines
248 B
C#
13 lines
248 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class Category
|
|
{
|
|
public string Href { get; set; }
|
|
public List<Image> Icons { get; set; }
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|