| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using MusicPlayer;
- using Newtonsoft.Json;
- namespace MusicPlayer
- {
- internal class APIHandler
- {
- public APIHandler()
- {
- }
- public List<Artist> GetArtists()
- {
- return null;
- }
- public List<Album> GetAlbums()
- {
- return null;
- }
- }
- }
|