show/hide this revision's text 2 spelling

I would go with option 1 and then make the Children property look like this:

    public IEnumerable<Folder> Children
    {
        get { return this.children.GetEnumerator(); }
    }

Now AddChild must be called to add the children. The colelction collection is not accessible.

show/hide this revision's text 1

I would go with option 1 and then make the Children property look like this:

    public IEnumerable<Folder> Children
    {
        get { return this.children.GetEnumerator(); }
    }

Now AddChild must be called to add the children. The colelction is not accessible.