diff options
-rw-r--r-- | OpenSim.Framework/Types/AssetStorage.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/OpenSim.Framework/Types/AssetStorage.cs b/OpenSim.Framework/Types/AssetStorage.cs new file mode 100644 index 0000000..1d2660c --- /dev/null +++ b/OpenSim.Framework/Types/AssetStorage.cs | |||
@@ -0,0 +1,23 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.Framework.Types | ||
7 | { | ||
8 | public class AssetStorage | ||
9 | { | ||
10 | |||
11 | public AssetStorage() { | ||
12 | } | ||
13 | |||
14 | public AssetStorage(LLUUID assetUUID) { | ||
15 | UUID=assetUUID; | ||
16 | } | ||
17 | |||
18 | public byte[] Data; | ||
19 | public sbyte Type; | ||
20 | public string Name; | ||
21 | public LLUUID UUID; | ||
22 | } | ||
23 | } | ||