This is a .NET Standard port of the Harvest.Net.
Some parts of the code is from lprichar/harvest.net
Create a client object:
HarvestRestClient client = new HarvestRestClient("example", "myusername", "mypassword");
Harvest API end points are converted to PascalCase. So example.harvestapp.com/account/who_am_i
becomes
Account myAccount = client.WhoAmI()
This library is MIT licensed.