using System.Collections.Generic; namespace SpotifyAPI.Web { public interface IPaginatable { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")] string Next { get; set; } List Items { get; set; } } public interface IPaginatable { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")] string Next { get; set; } List Items { get; set; } } }