mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
12 lines
290 B
C#
12 lines
290 B
C#
///////////////////////////////////////////////////////////////////
|
|
//
|
|
// (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(string message);
|
|
}
|