blob: 0602421088ca7c342d5f8b4006850ebfbaed5c44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
using libsecondlife;
namespace OpenSim.Framework
{
public class RequestAssetArgs : EventArgs
{
public int ChannelType;
public float Priority;
public int SourceType;
public LLUUID TransferID;
}
}
|