using System; using System.Linq; namespace Sony.Filtr.Core.SpotifyWeekly { [PetaPoco.TableName("tblSpotifyWeeklyTopArtist")] public class SpotifyTopArtist { public DateTime Date { get; set; } public string Country { get; set; } public string MainArtists { get; set; } public int Rank { get; set; } public int? Movement { get; set; } } }