chore: fixes api base-url

This commit is contained in:
Matthias Langhard
2020-12-09 19:56:40 +01:00
parent 75a687e31e
commit f5b3ff3694
5 changed files with 27 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ namespace Novaloop.PaymoApi.Extensions
{
public class PaymoApiOptions
{
public string BaseUrl { get; set; } = "https://app.paymoapp.com/api";
public string BaseUrl { get; set; } = "https://app.paymoapp.com/";
public string ApiToken { get; set; }
}
}