From 10f75f936e1322ea1e328799cfba08229d667a78 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Fri, 4 May 2007 03:25:20 +0000 Subject: Committing OpenGrid.Framework.Data and MySql Adaptor - not in functional state yet, posted for reference and future use. --- OpenGrid.Framework.Data/UserProfileData.cs | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 OpenGrid.Framework.Data/UserProfileData.cs (limited to 'OpenGrid.Framework.Data/UserProfileData.cs') 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 @@ +using System; +using System.Collections.Generic; +using System.Text; +using libsecondlife; + +namespace OpenGrid.Framework.Data +{ + public class UserProfileData + { + string username; // The configurable part of the users username + string surname; // The users surname (can be used to indicate user class - eg 'Test User' or 'Test Admin') + + ulong homeRegion; // RegionHandle of home + LLVector3 homeLocation; // Home Location inside the sim + + int created; // UNIX Epoch Timestamp (User Creation) + int lastLogin; // UNIX Epoch Timestamp (Last Login Time) + + string userInventoryURI; // URI to inventory server for this user + string userAssetURI; // URI to asset server for this user + + uint profileCanDoMask; // Profile window "I can do" mask + uint profileWantDoMask; // Profile window "I want to" mask + + string profileAboutText; // My about window text + string profileFirstText; // First Life Text + + LLUUID profileImage; // My avatars profile image + LLUUID profileFirstImage; // First-life image + + + } +} -- cgit v1.1