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

6
src/Shared/IApiClient.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Novaloop.PaymoApi.Shared
{
public interface IApiClient
{
}
}