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

19 lines
381 B
C#
Raw Normal View History

namespace SpotifyAPI.Web
{
public class PlaylistChangeDetailsRequest : RequestParams
{
[BodyParam("name")]
2020-05-25 17:00:38 +01:00
public string? Name { get; set; }
[BodyParam("public")]
public bool? Public { get; set; }
[BodyParam("collaborative")]
public bool? Collaborative { get; set; }
[BodyParam("description")]
2020-05-25 17:00:38 +01:00
public string? Description { get; set; }
}
}
2020-05-25 17:00:38 +01:00