* Add a method to allow friendship offers to a logged in client from an offline user directly from the server

This commit is contained in:
Justin Clarke Casey
2008-12-23 17:16:47 +00:00
parent b3c221a6d6
commit c1320112a9
6 changed files with 81 additions and 7 deletions

View File

@@ -200,6 +200,14 @@ namespace OpenSim.Framework
get { return _surname; }
set { _surname = value; }
}
/// <value>
/// The concatentation of the various name components.
/// </value>
public string Name
{
get { return String.Format("{0} {1}", _firstname, _surname); }
}
public string Email
{