using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NoteMan { class Data { private string filename = null; private List projects = new List(); public Data() { } public Data(string filename) { this.filename = filename; // TODO: implement import! } public void AddProject(string title) { projects.Add(new Project(title)); } } }