using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace Sony.Filtr.Core.SpotifyCharts.Data { public class AvailableChartType { [JsonConverter(typeof(StringEnumConverter))] public SpotifyChartsListType ListType { get; set; } [JsonConverter(typeof(StringEnumConverter))] public SpotifyChartsTimeWindow TimeWindow { get; set; } } }