using System; using System.Linq; using PetaPoco; namespace Sony.Filtr.Core.SpotifyBrowse.Data { //[Serializable] //[TableName("tblSpotifyBrowseFeaturedPlaylists")] //public class SpotifyBrowseItem //{ // 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 PlaylistName { get; set; } // public string OwnerUsername { get; set; } //} [Serializable] [TableName("tblSpotifyBrowseFeaturedPlaylist2")] public class SpotifyBrowseItem2 { public string Market { get; set; } public string Category { get; set; } public DateTime Date { get; set; } public int Position { get; set; } public string PlaylistId { get; set; } public string PlaylistName { get; set; } } }