mirror of
https://github.com/opensim/opensim.git
synced 2026-05-18 22:25:36 +08:00
12 lines
231 B
C#
12 lines
231 B
C#
using System;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.Framework
|
|
{
|
|
public class AvatarPickerReplyDataArgs : EventArgs
|
|
{
|
|
public LLUUID AvatarID;
|
|
public byte[] FirstName;
|
|
public byte[] LastName;
|
|
}
|
|
} |