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

16 lines
463 B
C#
Raw Normal View History

2020-05-04 22:02:53 +01:00
namespace SpotifyAPI.Web
{
public class FollowPlaylistRequest : RequestParams
{
2020-05-28 15:30:17 +01:00
/// <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>
2020-05-04 22:02:53 +01:00
[BodyParam("public")]
public bool? Public { get; set; }
2020-05-04 22:02:53 +01:00
}
}
2020-05-25 17:00:38 +01:00