using System; using System.Linq; namespace Sony.Filtr.AdminAPI.ViewModels.Spotify.Browse { public class SpotifyBrowseItemViewModel { public string Market { get; set; } public string Category { get; set; } public DateTime Date { get; set; } public int Position { get; set; } public string PlaylistUri { get; set; } public string PlaylistId { get; set; } public string PlaylistName { get; set; } public string OwnerUsername { get; set; } public bool IsSony { get; set; } } }