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

10 lines
155 B
C#
Raw Normal View History

2020-05-07 17:03:20 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class Actions
{
public Dictionary<string, bool> Disallows { get; set; }
2020-05-07 17:03:20 +01:00
}
}