1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Lextm.SharpSnmpLib.Mib.Elements 7 { 8 public interface IDeclaration: IElement 9 { 10 /// <summary> 11 /// Name. 12 /// </summary> 13 string Name 14 { 15 get; 16 } 17 } 18 } 19