working nicely

This commit is contained in:
Ryan Peters
2023-05-17 21:44:41 -04:00
parent 8e7b9c9622
commit 400f20e916
10 changed files with 44 additions and 37 deletions

View File

@ -2,6 +2,7 @@ namespace BinaryDad.Notes.Models;
public class ContentModel
{
public string CurrentNote { get; set; } = string.Empty;
public ICollection<string> NoteNames { get; set; } = new List<string>();
public string Text { get; set; } = string.Empty;
}