fixes compiler warning as url is not returned null

This commit is contained in:
Philipp Häfelfinger 2022-11-15 23:31:05 +01:00
parent 72fbed8604
commit 172759462c
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ public record AssignedTag : Tag
public int Counter { get; init; }
[JsonProperty("url")]
public string Url { get; init; }
public string Url { get; init; } = null!;
}