Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Latest commit

 

History

History
16 lines (13 loc) · 315 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 315 Bytes

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}");
}