mirror of
https://github.com/opensim/opensim.git
synced 2026-07-13 19:14:51 +08:00
20 lines
382 B
C#
20 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.Capabilities
|
|
{
|
|
[LLSDType("MAP")]
|
|
public class LLSDCapsDetails
|
|
{
|
|
public string MapLayer = "";
|
|
public string NewFileAgentInventory = "";
|
|
//public string EventQueueGet = "";
|
|
|
|
public LLSDCapsDetails()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|