using PetaPoco; using System; using System.Linq; namespace Sony.Filtr.Core.SpotifyWeekly { [PetaPoco.TableName("tblSpotifyWeeklyTopPlaylist")] public class SpotifyTopPlaylist { public DateTime Date { get; set; } public string Country { get; set; } public string PlaylistName { get; set; } public string PlaylistUri { get; set; } public int Rank { get; set; } public int? Movement { get; set; } public string PlaylistId { get; set; } } }