aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AvatarPickerReplyDataArgs.cs
blob: b15e4a5e024a99c72172788a115e89031377bf0a (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;
    }
}