public void AddRoot(string path) { ContentRoot newRoot = new ContentRoot(path); newRoot.generateContentList(); contents.Add(newRoot); }
public Content(string path, ContentRoot parent) : base(path) { this.parent = parent; this.isSelected = true; }