using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.Core.SpotifyCharts.Data { public class TrackChartPosition { public int Position { get; set; } public DateTime Date { get; set; } public int NumberOfStreams { get; set; } public int PercentMale { get; set; } public int PercentAgeGroup0to17 { get; set; } public int PercentAgeGroup18to24 { get; set; } public int PercentAgeGroup25to29 { get; set; } public int PercentAgeGroup30to34 { get; set; } public int PercentAgeGroup35to44 { get; set; } public int PercentAgeGroup45to54 { get; set; } public int PercentAgeGroup55plus { get; set; } } }