blob: 4e03df52710ef6fcf4b7d11fb9fc1e1f65d666eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
///////////////////////////////////////////////////////////////////
//
// (c) Careminster LImited, Melanie Thielker and the Meta7 Team
//
// This file is not open source. All rights reserved
//
public interface ISnmpModule
{
void Alert(string message);
void Trap(int code,string simname,string Message);
}
|