blob: 068d539d73f30887837daafbe9472dff3d40699c (
plain)
1
2
3
4
5
6
7
8
|
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Region.Capabilities
{
public delegate TResponse LLSDMethod<TRequest, TResponse>(TRequest request);
}
|