Warning cleanup

This commit is contained in:
2022-04-11 18:03:16 -04:00
parent abcaa85d44
commit 3e226a6a9e
4 changed files with 19 additions and 22 deletions
+3 -3
View File
@@ -27,9 +27,9 @@ public class NoteService : INoteService {
}
public List<NoteContentModel> NoteContentModels { get; set; } = default!;
public List<NoteConnectionModel> NoteConnectionModels { get; set; }
public List<NoteSectionModel> NoteSectionModels { get; set; }
public List<NoteConnectionModel> NoteConnectionModels { get; set; } = null!;
public List<NoteSectionModel> NoteSectionModels { get; set; } = null!;
public List<NoteContentModel> NoteContentModelsByPageOrder { get; set; } = new();