SpeakersViewModel.cs 474 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Diagnostics;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using Xamarin.Forms;
  9. using DevDaysSpeakers.Model;
  10. using System.Net.Http;
  11. using Newtonsoft.Json;
  12. using System.Collections.ObjectModel;
  13. using AppServiceHelpers.Abstractions;
  14. using System.Runtime.CompilerServices;
  15. namespace DevDaysSpeakers.ViewModel
  16. {
  17. public class SpeakersViewModel
  18. {
  19. }
  20. }