aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorMelanie2010-06-16 04:10:55 +0100
committerMelanie2010-06-16 04:10:55 +0100
commit0b75f759b49d11beb49f456c04fa52ee367797a6 (patch)
tree54b7ec0551afd65c9eaf04a3ec5b5e7802c6826e /OpenSim/Services/Interfaces
parentAdd "alert dialog" for sending dialogs to users from the console (diff)
parent* Support salted and unsalted password hashes in SimianAuthenticationServiceC... (diff)
downloadopensim-SC-0b75f759b49d11beb49f456c04fa52ee367797a6.zip
opensim-SC-0b75f759b49d11beb49f456c04fa52ee367797a6.tar.gz
opensim-SC-0b75f759b49d11beb49f456c04fa52ee367797a6.tar.bz2
opensim-SC-0b75f759b49d11beb49f456c04fa52ee367797a6.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/IUserAccountService.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs
index 09d1d87..c580078 100644
--- a/OpenSim/Services/Interfaces/IUserAccountService.cs
+++ b/OpenSim/Services/Interfaces/IUserAccountService.cs
@@ -29,6 +29,8 @@ using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using OpenMetaverse; 30using OpenMetaverse;
31 31
32using OpenSim.Framework;
33
32namespace OpenSim.Services.Interfaces 34namespace OpenSim.Services.Interfaces
33{ 35{
34 public class UserAccount 36 public class UserAccount
@@ -50,7 +52,7 @@ namespace OpenSim.Services.Interfaces
50 LastName = lastName; 52 LastName = lastName;
51 Email = email; 53 Email = email;
52 ServiceURLs = new Dictionary<string, object>(); 54 ServiceURLs = new Dictionary<string, object>();
53 // Created = ??? 55 Created = Util.UnixTimeSinceEpoch();
54 } 56 }
55 57
56 public string FirstName; 58 public string FirstName;