diff options
Diffstat (limited to 'OpenSim/Data/IUserAccountData.cs')
-rw-r--r-- | OpenSim/Data/IUserAccountData.cs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/OpenSim/Data/IUserAccountData.cs b/OpenSim/Data/IUserAccountData.cs index d1d6c66..0004a5f 100644 --- a/OpenSim/Data/IUserAccountData.cs +++ b/OpenSim/Data/IUserAccountData.cs | |||
@@ -36,6 +36,8 @@ namespace OpenSim.Data | |||
36 | { | 36 | { |
37 | public UUID PrincipalID; | 37 | public UUID PrincipalID; |
38 | public UUID ScopeID; | 38 | public UUID ScopeID; |
39 | public string FirstName; | ||
40 | public string LastName; | ||
39 | public Dictionary<string, object> Data; | 41 | public Dictionary<string, object> Data; |
40 | } | 42 | } |
41 | 43 | ||
@@ -44,12 +46,6 @@ namespace OpenSim.Data | |||
44 | /// </summary> | 46 | /// </summary> |
45 | public interface IUserAccountData | 47 | public interface IUserAccountData |
46 | { | 48 | { |
47 | UserAccountData Get(UUID principalID, UUID ScopeID); | ||
48 | |||
49 | List<UserAccountData> Query(UUID principalID, UUID ScopeID, string query); | ||
50 | |||
51 | bool Store(UserAccountData data); | 49 | bool Store(UserAccountData data); |
52 | |||
53 | bool SetDataItem(UUID principalID, string item, string value); | ||
54 | } | 50 | } |
55 | } | 51 | } |