public TypeDetailsViewModel(TypeViewModel parent)
            : base(parent)
        {
            _projectType = Parent.ProjectType;

            _type = Parent.Type;
            _isVisibleOutsideAssembly = _type.IsVisibleOutsideAssembly();

            _parentProperties = new NodeProperties();
            _parentProperties.LoadParent(Parent);
        }