Plumb in the partner and the account title fields for profile info.

This commit is contained in:
Melanie Thielker
2008-08-15 22:49:26 +00:00
parent c1fa7592c7
commit 04488d9d38
9 changed files with 110 additions and 9 deletions

View File

@@ -141,6 +141,8 @@ namespace OpenSim.Framework
//
private int _userFlags;
private int _godLevel;
private string _customType;
private LLUUID _partner;
/// <summary>
/// The regionhandle of the users preffered home region. If multiple sims occupy the same spot, the grid may decide which region the user logs into
@@ -348,5 +350,17 @@ namespace OpenSim.Framework
get { return _godLevel; }
set { _godLevel = value; }
}
public virtual string CustomType
{
get { return _customType; }
set { _customType = value; }
}
public virtual LLUUID Partner
{
get { return _partner; }
set { _partner = value; }
}
}
}