aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/UserProfiles.cs
diff options
context:
space:
mode:
authorBlueWall2013-12-06 02:52:13 -0500
committerBlueWall2013-12-06 14:30:37 -0500
commit5745aa0f865542b3cfdb0c656bd440dc7c2614b7 (patch)
treebce17900c7a761bb589bddec60b7923ea377ebe7 /OpenSim/Framework/UserProfiles.cs
parentAdded support for attachments to group notices when using Flotsam groups. (diff)
downloadopensim-SC_OLD-5745aa0f865542b3cfdb0c656bd440dc7c2614b7.zip
opensim-SC_OLD-5745aa0f865542b3cfdb0c656bd440dc7c2614b7.tar.gz
opensim-SC_OLD-5745aa0f865542b3cfdb0c656bd440dc7c2614b7.tar.bz2
opensim-SC_OLD-5745aa0f865542b3cfdb0c656bd440dc7c2614b7.tar.xz
Backport profile fixes
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/UserProfiles.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/UserProfiles.cs b/OpenSim/Framework/UserProfiles.cs
index 6133591..492f6b9 100644
--- a/OpenSim/Framework/UserProfiles.cs
+++ b/OpenSim/Framework/UserProfiles.cs
@@ -90,6 +90,14 @@ namespace OpenSim.Framework
90 public UUID TargetId; 90 public UUID TargetId;
91 public string Notes; 91 public string Notes;
92 } 92 }
93
94 public class UserPreferences
95 {
96 public UUID UserId;
97 public bool IMViaEmail = false;
98 public bool Visible = false;
99 public string EMail = string.Empty;
100 }
93 101
94 public class UserAccountProperties 102 public class UserAccountProperties
95 { 103 {