Very simple C# Qwertee data extractor into a library targeting .NET Standard 1.4.
This lib is compatible with .NET Core, .NET Framework 4.6.1, Xamarin (iOS, Android), Universal Windows Platform.
I wanted to group all the algorithms used in my Wearme app into a library for more clarity.
Nuget Install-Package Qwerteesharp
using Qwerteesharp;
var client = new QwerteesharpClient();
client.GetTodayTees();
var client = new QwerteesharpClient();
var currentDesigns = await client.GetAllCurrentDesigns();
var todayDesigns = await client.GetTodayDesigns();
var lastChanceDesigns = await client.GetLastChanceDesigns();
To get the TimeSpan
before the next sale, you can use the following method:
var nextSale = client.GetTimeSpanBeforeNextSale();