Ensure more correct nullability

This commit is contained in:
Matt Nadareski
2023-09-10 20:27:14 -04:00
parent ce072691bb
commit 89ba5f4508
31 changed files with 63 additions and 63 deletions

View File

@@ -15,7 +15,7 @@ namespace SabreTools.Models.AttractMode
#if NET48
public Row[] Row { get; set; }
#else
public Row[]? Row { get; set; }
public Row?[]? Row { get; set; }
#endif
}
}