mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
21 lines
389 B
C#
21 lines
389 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class EpisodesRequest : RequestParams
|
||
|
{
|
||
|
public EpisodesRequest(IList<string> ids)
|
||
|
{
|
||
|
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
|
||
|
|
||
|
Ids = ids;
|
||
|
}
|
||
|
|
||
|
[QueryParam("ids")]
|
||
|
public IList<string> Ids { get; set; }
|
||
|
|
||
|
[QueryParam("market")]
|
||
|
public string Market { get; set; }
|
||
|
}
|
||
|
}
|