using System; using System.Linq; namespace Sony.Filtr.Core.SpotifyWeekly { [PetaPoco.TableName("tblSpotifyWeeklyTopTrack")] public class SpotifyTopTrack { public DateTime Date { get; set; } public string Country { get; set; } public string TrackName { get; set; } public string MainArtists { get; set; } public string Uri { get; set; } public int Streams { get; set; } public int Rank { get; set; } public int? Movement { get; set; } public int? StreamIncrease { get; set; } public double? StreamPercentageIncrease { get; set; } } }