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

18 lines
378 B
C#

namespace SpotifyAPI.Web
{
public class PlaylistChangeDetailsRequest : RequestParams
{
[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; }
}
}