mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* Started working on LlsdMethod for BaseHttpServer
*Renamed IRestHandler.cs to RestMethod.cs which is the correct name.
This commit is contained in:
@@ -34,7 +34,7 @@ namespace OpenSim.Region.Capabilities
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class LLSDType : Attribute
|
||||
{
|
||||
private string myType;
|
||||
protected string myType;
|
||||
|
||||
public LLSDType(string type)
|
||||
{
|
||||
@@ -50,4 +50,12 @@ namespace OpenSim.Region.Capabilities
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class LLSDMap : LLSDType
|
||||
{
|
||||
public LLSDMap() : base( "MAP" )
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user