fix(appsettings): move JsonSerializerDateFormat

This commit is contained in:
tekh 2025-08-15 14:14:47 +02:00
parent 3082c0b77c
commit 1ed1937c40
2 changed files with 3 additions and 5 deletions

View File

@ -6,8 +6,6 @@ public class ClientOptions
{
public string? BaseAddress { get; set; }
public string? ApiKey { get; set; }
public TimeSpan? Timeout { get; set; }
public Dictionary<string, string?>? DefaultQueryStrings { get; set; }

View File

@ -9,8 +9,8 @@
"EConnect": {
"BaseAddress": "https://portal.demoportal01.leanetec.com",
"DefaultQueryStrings": {
"apiKey": "HGpGp3vk3MsKgSe0tKVZ1ZRCuq6bFoJ1",
"JsonSerializerDateFormat": "yyyy-MM-dd HH:mm"
}
"apiKey": "HGpGp3vk3MsKgSe0tKVZ1ZRCuq6bFoJ1"
},
"JsonSerializerDateFormat": "yyyy-MM-dd HH:mm"
}
}