class profile {
int date_created;
string creator; // person who created the object
string name; // name
string short; // title
string long; // description of purpose
}
class member {
string *groups; // groups member belongs to
class profile info;
}
class group {
string *members; // members who belong to the group
string *leaders; // leaders of the group
class profile info;
}