diff options
Cleaning up some of the CAPS functions, Asset uploads now use the new LLSDStreamhandler system.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Capabilities/LLSDAssetUploadResponse.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Region/Capabilities/LLSDAssetUploadResponse.cs b/OpenSim/Region/Capabilities/LLSDAssetUploadResponse.cs new file mode 100644 index 0000000..1a620ae --- /dev/null +++ b/OpenSim/Region/Capabilities/LLSDAssetUploadResponse.cs | |||
@@ -0,0 +1,18 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Region.Capabilities | ||
6 | { | ||
7 | [LLSDMap] | ||
8 | public class LLSDAssetUploadResponse | ||
9 | { | ||
10 | public string uploader = ""; | ||
11 | public string state = ""; | ||
12 | |||
13 | public LLSDAssetUploadResponse() | ||
14 | { | ||
15 | |||
16 | } | ||
17 | } | ||
18 | } | ||