Spotify.NET/SpotifyAPI.Web/Models/Request/PlaylistChangeDetailsRequest.cs
2020-05-25 18:00:47 +02:00

19 lines
381 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; }
}
}