/baelor-dotnet

CSharp libary for the baelor api

Primary LanguageC#

baelor-dotnet

An Api Client for the Baelor Api.

Example Usage

using BaelorNet;

var baelorClient = new BaelorClient("api-key");
var songs = await baelorClient.Songs();
foreach(var song in songs)
{
	Console.WriteLine($"{song.Tite} is in the album {song.Album.Name}");
}