Spotify.NET/SpotifyAPI.Web/Models/Request/FollowPlaylistRequest.cs
2020-05-28 16:30:17 +02:00

16 lines
463 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace SpotifyAPI.Web
{
public class FollowPlaylistRequest : RequestParams
{
/// <summary>
/// Defaults to true. If true the playlist will be included in users public playlists,
/// if false it will remain private. To be able to follow playlists privately,
/// the user must have granted the playlist-modify-private scope.
/// </summary>
/// <value></value>
[BodyParam("public")]
public bool? Public { get; set; }
}
}