Example #1
0
        public async Task <IEnumerable <Pets> > GetPetsAsync()
        {
            var json = await Client.GetStringAsync("https://raw.githubusercontent.com/BryanOroxon/GifInMotion/master/GifInMotion/GifInMotion/Data/pets.json");

            var all = Pets.FromJson(json);

            return(all);
        }