IStatsReport.cs 226 B

12345678910
  1. using System.Collections;
  2. namespace OpenSim.Region.UserStatistics
  3. {
  4. public interface IStatsController
  5. {
  6. Hashtable ProcessModel(Hashtable pParams);
  7. string RenderView(Hashtable pModelResult);
  8. }
  9. }