namespace BinaryDad.Notes.Models; public class ContentModel { public string CurrentNote { get; set; } = string.Empty; public ICollection NoteNames { get; set; } = new List(); public string Text { get; set; } = string.Empty; }