using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models { public class SpotifyTracks : HeaderTracker, IRawResponseTracker { public string href { get; set; } public List items { get; set; } public int limit { get; set; } public string next { get; set; } public int offset { get; set; } public object previous { get; set; } public int total { get; set; } public KeyValuePair RawResponse { get; private set; } public void AddRawResponseToModel(string url, string json) { this.RawResponse = new KeyValuePair(url, json); } } }