APIHandler.cs 452 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using MusicPlayer;
  7. using Newtonsoft.Json;
  8. namespace MusicPlayer
  9. {
  10. internal class APIHandler
  11. {
  12. public APIHandler()
  13. {
  14. }
  15. public List<Artist> GetArtists()
  16. {
  17. return null;
  18. }
  19. public List<Album> GetAlbums()
  20. {
  21. return null;
  22. }
  23. }
  24. }