123456789101112131415161718192021222324252627282930313233343536373839 |
- using System.Collections;
- namespace OpenSim.Region.UserStatistics
- {
- public interface IStatsController
- {
- string ReportName { get; }
- Hashtable ProcessModel(Hashtable pParams);
- string RenderView(Hashtable pModelResult);
- string RenderJson(Hashtable pModelResult);
- }
- }
|