From 04488d9d3819fd16502a095771d1513af02b7a93 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Fri, 15 Aug 2008 22:49:26 +0000 Subject: Plumb in the partner and the account title fields for profile info. --- OpenSim/Framework/UserProfileData.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'OpenSim/Framework/UserProfileData.cs') diff --git a/OpenSim/Framework/UserProfileData.cs b/OpenSim/Framework/UserProfileData.cs index ec9c473..d0b4c25 100644 --- a/OpenSim/Framework/UserProfileData.cs +++ b/OpenSim/Framework/UserProfileData.cs @@ -141,6 +141,8 @@ namespace OpenSim.Framework // private int _userFlags; private int _godLevel; + private string _customType; + private LLUUID _partner; /// /// 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; } + } } } -- cgit v1.1