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

View File

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