Spotify.NET/SpotifyAPI.Web/Models/Request/PlaylistCreateRequest.cs
2020-05-03 01:00:35 +02:00

23 lines
449 B
C#

namespace SpotifyAPI.Web
{
public class PlaylistCreateRequest : RequestParams
{
public PlaylistCreateRequest(string name)
{
Name = name;
}
[BodyParam("name")]
public string Name { get; set; }
[BodyParam("public")]
public bool? Public { get; set; }
[BodyParam("collaborative")]
public bool? Collaborative { get; set; }
[BodyParam("description")]
public string Description { get; set; }
}
}