mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +00:00
25 lines
508 B
C#
25 lines
508 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public class PlaylistCreateRequest : RequestParams
|
|
{
|
|
public PlaylistCreateRequest(string name)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
|
|
Name = name;
|
|
}
|
|
|
|
[BodyParam("name")]
|
|
public string Name { get; }
|
|
|
|
[BodyParam("public")]
|
|
public bool? Public { get; set; }
|
|
|
|
[BodyParam("collaborative")]
|
|
public bool? Collaborative { get; set; }
|
|
|
|
[BodyParam("description")]
|
|
public string Description { get; set; }
|
|
}
|
|
}
|