using System.Collections.Generic; namespace Sony.Filtr.Core.Moodagent { public class PlaylistItem { public string SpotifyURI { get; set; } public int ScoreSound { get; set; } public int ScoreMood { get; set; } public int ScoreGenre { get; set; } public int ScoreArtist { get; set; } public int ScoreTempo { get; set; } public string ScoreDescription { get; set; } public int Placement { get; set; } public string PlaylistID { get; set; } public double? TotalScore { get; set; } } public class PlaylistRecommendationResponse { public string Seed { get; set; } public string SeedType { get; set; } public int ResultsPerPage { get; set; } public int NumResults { get; set; } public int Page { get; set; } public List Results { get; set; } } public class TrackItem { public string TrackID { get; set; } public int ScoreSound { get; set; } public int ScoreMood { get; set; } public int ScoreGenre { get; set; } public int ScoreArtist { get; set; } public int ScoreTempo { get; set; } public string ScoreDescription { get; set; } public int? PlaylistPlacement { get; set; } public int Placement { get; set; } public string ArtistName { get; set; } public string Title { get; set; } public string ReleaseDate { get; set; } public double? TotalScore { get; set; } } public class TrackRecommendationResponse { public string Seed { get; set; } public string SeedType { get; set; } public int ResultsPerPage { get; set; } public int NumResults { get; set; } public int Page { get; set; } public List Results { get; set; } } }