Example #1
0
        public async Task <PageResponse <LastTrack> > GetWeeklyTrackChartAsync(string username, double?from = null, double?to = null)
        {
            var command = new GetWeeklyTrackChartCommand(auth: Auth, username: username)
            {
                From       = from,
                To         = to,
                HttpClient = HttpClient
            };

            return(await command.ExecuteAsync());
        }