feat(Client.DIExtensions): Methode zur Behandlung von Dependency Injection erstellt

This commit is contained in:
Developer 02
2025-02-03 13:36:59 +01:00
parent bf12c889f3
commit bea08ce06c
2 changed files with 22 additions and 1 deletions

View File

@@ -2,7 +2,9 @@
public class ClientParams
{
public required string Url { get; init; }
#pragma warning disable CS8618 // throw exception in DI extension if it not set
public string Url { get; set; }
#pragma warning restore CS8618
public readonly ClientEvents Events = new();
}