Add Exceptionhandler, AlertService JSON-Converter AppSettings via DI Reformat Code
6 lines
199 B
C#
6 lines
199 B
C#
namespace Jugenddienst_Stunden.Infrastructure;
|
|
|
|
internal sealed class ApiOptions {
|
|
public required string BaseUrl { get; init; }
|
|
public TimeSpan Timeout { get; init; } = TimeSpan.FromSeconds(15);
|
|
} |