using System.Collections.Generic; namespace SpotifyAPI.Web { public class FollowCheckPlaylistRequest : RequestParams { /// /// /// /// /// A comma-separated list of Spotify User IDs ; /// the ids of the users that you want to check to see if they follow the playlist. /// Maximum: 5 ids. /// public FollowCheckPlaylistRequest(IList ids) { Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids)); Ids = ids; } /// /// A comma-separated list of Spotify User IDs ; /// the ids of the users that you want to check to see if they follow the playlist. /// Maximum: 5 ids. /// /// [QueryParam("ids")] public IList Ids { get; } } }