aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/UserProfileData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/UserProfileData.cs')
-rw-r--r--OpenSim/Framework/UserProfileData.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/UserProfileData.cs b/OpenSim/Framework/UserProfileData.cs
index b6f309d..51678e4 100644
--- a/OpenSim/Framework/UserProfileData.cs
+++ b/OpenSim/Framework/UserProfileData.cs
@@ -200,6 +200,14 @@ namespace OpenSim.Framework
200 get { return _surname; } 200 get { return _surname; }
201 set { _surname = value; } 201 set { _surname = value; }
202 } 202 }
203
204 /// <value>
205 /// The concatentation of the various name components.
206 /// </value>
207 public string Name
208 {
209 get { return String.Format("{0} {1}", _firstname, _surname); }
210 }
203 211
204 public string Email 212 public string Email
205 { 213 {