chore: refactoring some code to introduce a common base class for all api classes

This commit is contained in:
Matthias Langhard
2021-05-21 22:13:04 +02:00
parent ac20e2e1d4
commit 89e7ce8449
34 changed files with 721 additions and 551 deletions

View File

@@ -0,0 +1,8 @@
namespace Novaloop.PaymoApi.Extensions
{
public class ApiOptions
{
public string BaseUrl { get; set; } = "https://app.paymoapp.com/";
public string ApiToken { get; set; }
}
}