mirror of
https://github.com/opensim/opensim.git
synced 2026-07-13 19:14:51 +08:00
15 lines
269 B
C#
15 lines
269 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.Framework
|
|
{
|
|
public class AvatarPickerAvatar
|
|
{
|
|
public LLUUID AvatarID;
|
|
public string firstName;
|
|
public string lastName;
|
|
}
|
|
}
|