aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/UserStatistics/IStatsReport.cs
blob: 4295c82985c42d78f59709bbe733717d8fb48c08 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Collections;

namespace OpenSim.Region.UserStatistics
{
    public interface IStatsController
    {
        Hashtable ProcessModel(Hashtable pParams);
        string RenderView(Hashtable pModelResult);
    }
}