mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 06:36:26 +00:00
Make Fields List instead of IList, fixes #779
This commit is contained in:
parent
9b8effe270
commit
cc90c5afa4
@ -38,7 +38,7 @@ namespace SpotifyAPI.Web
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value></value>
|
/// <value></value>
|
||||||
[QueryParam("fields")]
|
[QueryParam("fields")]
|
||||||
public IList<string> Fields { get; }
|
public List<string> Fields { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The maximum number of items to return. Default: 100. Minimum: 1. Maximum: 100.
|
/// The maximum number of items to return. Default: 100. Minimum: 1. Maximum: 100.
|
||||||
|
@ -26,7 +26,7 @@ namespace SpotifyAPI.Web
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value></value>
|
/// <value></value>
|
||||||
[QueryParam("fields")]
|
[QueryParam("fields")]
|
||||||
public IList<string> Fields { get; }
|
public List<string> Fields { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An ISO 3166-1 alpha-2 country code or the string from_token.
|
/// An ISO 3166-1 alpha-2 country code or the string from_token.
|
||||||
|
Loading…
Reference in New Issue
Block a user