aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGrid.Framework.Data/UserProfileData.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-05-04 03:25:20 +0000
committerAdam Frisby2007-05-04 03:25:20 +0000
commit10f75f936e1322ea1e328799cfba08229d667a78 (patch)
tree87bc3faaeb19595a67ef0b286a93dbdb117c1942 /OpenGrid.Framework.Data/UserProfileData.cs
parentfix array size (diff)
downloadopensim-SC_OLD-10f75f936e1322ea1e328799cfba08229d667a78.zip
opensim-SC_OLD-10f75f936e1322ea1e328799cfba08229d667a78.tar.gz
opensim-SC_OLD-10f75f936e1322ea1e328799cfba08229d667a78.tar.bz2
opensim-SC_OLD-10f75f936e1322ea1e328799cfba08229d667a78.tar.xz
Committing OpenGrid.Framework.Data and MySql Adaptor - not in functional state yet, posted for reference and future use.
Diffstat (limited to 'OpenGrid.Framework.Data/UserProfileData.cs')
-rw-r--r--OpenGrid.Framework.Data/UserProfileData.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/OpenGrid.Framework.Data/UserProfileData.cs b/OpenGrid.Framework.Data/UserProfileData.cs
new file mode 100644
index 0000000..d99394e
--- /dev/null
+++ b/OpenGrid.Framework.Data/UserProfileData.cs
@@ -0,0 +1,33 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using libsecondlife;
5
6namespace OpenGrid.Framework.Data
7{
8 public class UserProfileData
9 {
10 string username; // The configurable part of the users username
11 string surname; // The users surname (can be used to indicate user class - eg 'Test User' or 'Test Admin')
12
13 ulong homeRegion; // RegionHandle of home
14 LLVector3 homeLocation; // Home Location inside the sim
15
16 int created; // UNIX Epoch Timestamp (User Creation)
17 int lastLogin; // UNIX Epoch Timestamp (Last Login Time)
18
19 string userInventoryURI; // URI to inventory server for this user
20 string userAssetURI; // URI to asset server for this user
21
22 uint profileCanDoMask; // Profile window "I can do" mask
23 uint profileWantDoMask; // Profile window "I want to" mask
24
25 string profileAboutText; // My about window text
26 string profileFirstText; // First Life Text
27
28 LLUUID profileImage; // My avatars profile image
29 LLUUID profileFirstImage; // First-life image
30
31
32 }
33}