aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IGridUserData.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/IGridUserData.cs (renamed from OpenSim/Data/IUserGridData.cs)8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Data/IUserGridData.cs b/OpenSim/Data/IGridUserData.cs
index 6f7467e..abd2cef 100644
--- a/OpenSim/Data/IUserGridData.cs
+++ b/OpenSim/Data/IGridUserData.cs
@@ -33,7 +33,7 @@ using OpenSim.Framework;
33namespace OpenSim.Data 33namespace OpenSim.Data
34{ 34{
35 // This MUST be a ref type! 35 // This MUST be a ref type!
36 public class UserGridData 36 public class GridUserData
37 { 37 {
38 public string UserID; 38 public string UserID;
39 public Dictionary<string, string> Data; 39 public Dictionary<string, string> Data;
@@ -42,9 +42,9 @@ namespace OpenSim.Data
42 /// <summary> 42 /// <summary>
43 /// An interface for connecting to the user grid datastore 43 /// An interface for connecting to the user grid datastore
44 /// </summary> 44 /// </summary>
45 public interface IUserGridData 45 public interface IGridUserData
46 { 46 {
47 UserGridData GetUserGridData(string userID); 47 GridUserData GetGridUserData(string userID);
48 bool StoreUserGridData(UserGridData data); 48 bool StoreGridUserData(GridUserData data);
49 } 49 }
50} \ No newline at end of file 50} \ No newline at end of file