Match field NRT annotation in ctor argument

This commit is contained in:
Bartłomiej Dach 2023-06-24 15:17:14 +02:00
parent 1f2f522a1e
commit 8fdd599b39
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public partial class ChangelogListing : ChangelogContent
{
private readonly List<APIChangelogBuild>? entries;
public ChangelogListing(List<APIChangelogBuild> entries)
public ChangelogListing(List<APIChangelogBuild>? entries)
{
this.entries = entries;
}