Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 431 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 431 Bytes

Saaya.Wrapper

API wrapper for Saaya app's API.


Examples:

using Saaya.Wrapper;

// Class code

private ISaayaClient saaya;

public MyClass()
{
	saaya = new SaayaClient();
}

public async Task GetSongs()
{
	var songs = await saaya.GetSongsAsync("token");
	// Consume the songs
}

public async Task GetPlaylistSongs()
{
	// Playlist ID: 3
	var songs = await saaya.GetSongsAsync("token", 3);
	// Consume the songs
}