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