ModuleIdentity.cs 294 B

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