Make Fields List instead of IList, fixes #779

This commit is contained in:
Jonas Dellinger 2022-11-18 14:07:19 +01:00
parent 9b8effe270
commit cc90c5afa4
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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.