aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/GroupData.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-10-24 23:04:55 +0000
committerMelanie Thielker2008-10-24 23:04:55 +0000
commit64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e (patch)
treea8398aa3c9234ff4d178ba2031e8180c605b1387 /OpenSim/Framework/GroupData.cs
parent* minor: eliminate some mono compiler warnings (diff)
downloadopensim-SC_OLD-64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e.zip
opensim-SC_OLD-64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e.tar.gz
opensim-SC_OLD-64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e.tar.bz2
opensim-SC_OLD-64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e.tar.xz
Plumb some more
Diffstat (limited to 'OpenSim/Framework/GroupData.cs')
-rw-r--r--OpenSim/Framework/GroupData.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/GroupData.cs b/OpenSim/Framework/GroupData.cs
index 76034c0..9626553 100644
--- a/OpenSim/Framework/GroupData.cs
+++ b/OpenSim/Framework/GroupData.cs
@@ -42,11 +42,12 @@ namespace OpenSim.Framework
42 public string GroupName; 42 public string GroupName;
43 public bool AllowPublish = true; 43 public bool AllowPublish = true;
44 public bool MaturePublish = true; 44 public bool MaturePublish = true;
45 public UUID Charter = UUID.Zero; 45 public string Charter;
46 public UUID FounderID = UUID.Zero; 46 public UUID FounderID = UUID.Zero;
47 public UUID GroupPicture = UUID.Zero; 47 public UUID GroupPicture = UUID.Zero;
48 public int MembershipFee = 0; 48 public int MembershipFee = 0;
49 public bool OpenEnrollment = true; 49 public bool OpenEnrollment = true;
50 public bool ShowInList = true;
50 51
51 // Per user data 52 // Per user data
52 // 53 //
@@ -55,6 +56,8 @@ namespace OpenSim.Framework
55 public ulong GroupPowers = 0; 56 public ulong GroupPowers = 0;
56 public bool Active = false; 57 public bool Active = false;
57 public UUID ActiveRole = UUID.Zero; 58 public UUID ActiveRole = UUID.Zero;
59 public bool ListInProfile = false;
60 public string GroupTitle;
58 } 61 }
59 62
60 public struct GroupTitlesData 63 public struct GroupTitlesData
@@ -92,6 +95,7 @@ namespace OpenSim.Framework
92 public ulong AgentPowers; 95 public ulong AgentPowers;
93 public string Title; 96 public string Title;
94 public bool IsOwner; 97 public bool IsOwner;
98 public bool ListInProfile;
95 } 99 }
96 100
97 public struct GroupRolesData 101 public struct GroupRolesData