public static FsRootContainer Load(XmlReader reader)
        {
            FsRootContainer container = new FsRootContainer();

            container.ReadXml(reader);
            return(container);
        }
 protected FsStructureElement(FsRootContainer root)
 {
     Root = root ?? throw new ArgumentNullException("root");
 }