blob: 654a13533bf2b849a75792f1c2b873e1821de05f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using libsecondlife;
namespace OpenSim.Framework
{
public class AvatarPickerReplyDataArgs : EventArgs
{
public LLUUID AvatarID;
public byte[] FirstName;
public byte[] LastName;
}
}
|