using System; using System.Linq; namespace Sony.Filtr.Core.SpotifyWeekly { [PetaPoco.TableName("tblSpotifyWeeklyTopAlbum")] public class SpotifyTopAlbum { public DateTime Date { get; set; } public string Country { get; set; } public string AlbumName { get; set; } public string AlbumArtist { get; set; } public string Licensor { get; set; } public int Rank { get; set; } public int? Movement { get; set; } } }