1 /* 2 * Created by SharpDevelop. 3 * User: lextm 4 * Date: 2008/5/21 5 * Time: 19:34 6 * 7 * To change this template use Tools | Options | Coding | Edit Standard Headers. 8 */ 9 10 namespace Lextm.SharpSnmpLib.Mib.Elements.Entities 11 { 12 /// <summary> 13 /// Description of NotificationGroupNode. 14 /// </summary> 15 public sealed class NotificationGroup : EntityBase 16 { NotificationGroup(IModule module, SymbolList preAssignSymbols, ISymbolEnumerator symbols)17 public NotificationGroup(IModule module, SymbolList preAssignSymbols, ISymbolEnumerator symbols) 18 : base(module, preAssignSymbols, symbols) 19 { 20 } 21 } 22 }