using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NotesNet8.Models { internal class Note { public string Filename { get; set; } public string Text { get; set; } public DateTime Date { get; set; } } }