blob: 6de28ce699160e8b1b0d8cd53931355d3a6e2b30 (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace Lextm.SharpSnmpLib.Mib.Elements.Entities
{
public sealed class ModuleIdentity : EntityBase
{
public ModuleIdentity(IModule module, SymbolList preAssignSymbols, ISymbolEnumerator symbols)
: base(module, preAssignSymbols, symbols)
{
}
}
}
|