diff options
author | Melanie Thielker | 2009-04-16 00:15:57 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-04-16 00:15:57 +0000 |
commit | 7e95783dd3fbeb7d93885e85606adc74d73e567e (patch) | |
tree | 1d9f3695064f9c2d9d063a8c92009c88a9a04475 /OpenSim/Framework/GroupData.cs | |
parent | Add the XML manifests needed to get the new style modules to load. (diff) | |
download | opensim-SC_OLD-7e95783dd3fbeb7d93885e85606adc74d73e567e.zip opensim-SC_OLD-7e95783dd3fbeb7d93885e85606adc74d73e567e.tar.gz opensim-SC_OLD-7e95783dd3fbeb7d93885e85606adc74d73e567e.tar.bz2 opensim-SC_OLD-7e95783dd3fbeb7d93885e85606adc74d73e567e.tar.xz |
Expose the GroupRecord and it's accessor API
Diffstat (limited to 'OpenSim/Framework/GroupData.cs')
-rw-r--r-- | OpenSim/Framework/GroupData.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Framework/GroupData.cs b/OpenSim/Framework/GroupData.cs index 178193e..28d1639 100644 --- a/OpenSim/Framework/GroupData.cs +++ b/OpenSim/Framework/GroupData.cs | |||
@@ -30,6 +30,21 @@ using OpenMetaverse; | |||
30 | 30 | ||
31 | namespace OpenSim.Framework | 31 | namespace OpenSim.Framework |
32 | { | 32 | { |
33 | public class GroupRecord | ||
34 | { | ||
35 | public UUID GroupID; | ||
36 | public string GroupName; | ||
37 | public bool AllowPublish = true; | ||
38 | public bool MaturePublish = true; | ||
39 | public string Charter; | ||
40 | public UUID FounderID = UUID.Zero; | ||
41 | public UUID GroupPicture = UUID.Zero; | ||
42 | public int MembershipFee = 0; | ||
43 | public bool OpenEnrollment = true; | ||
44 | public UUID OwnerRoleID = UUID.Zero; | ||
45 | public bool ShowInList = false; | ||
46 | } | ||
47 | |||
33 | public class GroupMembershipData | 48 | public class GroupMembershipData |
34 | { | 49 | { |
35 | // Group base data | 50 | // Group base data |