Add support for user preferences (im via email)

This commit is contained in:
BlueWall
2013-12-06 02:52:13 -05:00
parent 04f8fc1ce9
commit 1842388bb4
14 changed files with 297 additions and 36 deletions

View File

@@ -90,6 +90,14 @@ namespace OpenSim.Framework
public UUID TargetId;
public string Notes;
}
public class UserPreferences
{
public UUID UserId;
public bool IMViaEmail = false;
public bool Visible = false;
public string EMail = string.Empty;
}
public class UserAccountProperties
{