aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/GroupData.cs
diff options
context:
space:
mode:
authorMelanie2010-01-08 05:29:29 +0000
committerMelanie2010-01-08 05:29:29 +0000
commit17efecd6c57c7abf6cc67bd9e347ec6176caab27 (patch)
tree2db34a14f2f2699cda16c3e7446c056b5f4f1ffd /OpenSim/Framework/GroupData.cs
parentSecond Fix to the new Packets as per Melanie's request. (diff)
downloadopensim-SC_OLD-17efecd6c57c7abf6cc67bd9e347ec6176caab27.zip
opensim-SC_OLD-17efecd6c57c7abf6cc67bd9e347ec6176caab27.tar.gz
opensim-SC_OLD-17efecd6c57c7abf6cc67bd9e347ec6176caab27.tar.bz2
opensim-SC_OLD-17efecd6c57c7abf6cc67bd9e347ec6176caab27.tar.xz
Moving the new group data structures out of LLClientView into GroupData.
The new methods are still not in IClientAPI, so some work remains to be done.
Diffstat (limited to 'OpenSim/Framework/GroupData.cs')
-rw-r--r--OpenSim/Framework/GroupData.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/OpenSim/Framework/GroupData.cs b/OpenSim/Framework/GroupData.cs
index 247420e..e3b8626 100644
--- a/OpenSim/Framework/GroupData.cs
+++ b/OpenSim/Framework/GroupData.cs
@@ -135,4 +135,30 @@ namespace OpenSim.Framework
135 public bool HasAttachment; 135 public bool HasAttachment;
136 public byte AssetType; 136 public byte AssetType;
137 } 137 }
138
139 public struct GroupVoteHistory
140 {
141 public string VoteID;
142 public string VoteInitiator;
143 public string Majority;
144 public string Quorum;
145 public string TerseDateID;
146 public string StartDateTime;
147 public string EndDateTime;
148 public string VoteType;
149 public string VoteResult;
150 public string ProposalText;
151 }
152
153 public struct GroupActiveProposals
154 {
155 public string VoteID;
156 public string VoteInitiator;
157 public string Majority;
158 public string Quorum;
159 public string TerseDateID;
160 public string StartDateTime;
161 public string EndDateTime;
162 public string ProposalText;
163 }
138} 164}