class A : PersistentDataModel
{
...
}
class B : PersistentDataModel
{
...
}
A a;
B b;
a.Copy(b); // entire data of a is copied into b
a.ToString(); // shows all datas and sub-datas and so on... this is a tree of data
Functions Bind(), Add(), Copy, Export() can insert new datas.