using System; using System.Collections.Generic; namespace Sony.Filtr.AdminAPI.Modules.AnalyzePlaylist.ViewModels { public class SonyTracksResponse { public string PlaylistUri { get; set; } public IEnumerable Tracks { get; set; } public double Percentage { get; set; } public DateTime? TracksLastAdded { get; set; } public string Name { get; set; } public string ImageUrl { get; set; } public int Followers { get; set; } public string Description { get; set; } public int? BuzzCategoryId { get; set; } public string UserDisplayName { get; set; } public string UserId { get; set; } } }