mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
18 lines
378 B
C#
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; }
|
||
|
}
|
||
|
}
|