Spotify.NET/SpotifyAPI.Web/Models/Request/FollowPlaylistRequest.cs

9 lines
154 B
C#
Raw Normal View History

2020-05-04 22:02:53 +01:00
namespace SpotifyAPI.Web
{
public class FollowPlaylistRequest : RequestParams
{
[BodyParam("public")]
public bool? Public { get; set; }
2020-05-04 22:02:53 +01:00
}
}