diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/AvatarPickerReplyDataArgs.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Framework/AvatarPickerReplyDataArgs.cs b/OpenSim/Framework/AvatarPickerReplyDataArgs.cs new file mode 100644 index 0000000..654a135 --- /dev/null +++ b/OpenSim/Framework/AvatarPickerReplyDataArgs.cs | |||
@@ -0,0 +1,12 @@ | |||
1 | using System; | ||
2 | using libsecondlife; | ||
3 | |||
4 | namespace OpenSim.Framework | ||
5 | { | ||
6 | public class AvatarPickerReplyDataArgs : EventArgs | ||
7 | { | ||
8 | public LLUUID AvatarID; | ||
9 | public byte[] FirstName; | ||
10 | public byte[] LastName; | ||
11 | } | ||
12 | } \ No newline at end of file | ||