fix some nullable issues
This commit is contained in:
@ -2,6 +2,6 @@ namespace BinaryDad.Notes.Models;
|
||||
|
||||
public class ContentModel
|
||||
{
|
||||
public ICollection<string> NoteNames { get; set; }
|
||||
public string Text { get; set; }
|
||||
public ICollection<string> NoteNames { get; set; } = new List<string>();
|
||||
public string Text { get; set; } = string.Empty;
|
||||
}
|
Reference in New Issue
Block a user