mirror of
https://github.com/opensim/opensim.git
synced 2026-05-24 02:35:36 +08:00
12 lines
321 B
C#
12 lines
321 B
C#
///////////////////////////////////////////////////////////////////
|
|
//
|
|
// (c) Careminster LImited, Melanie Thielker and the Meta7 Team
|
|
//
|
|
// This file is not open source. All rights reserved
|
|
// Mod 2
|
|
public interface ISnmpModule
|
|
{
|
|
void Alert(string message);
|
|
void Trap(int code,string simname,string Message);
|
|
}
|