• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 using Lextm.SharpSnmpLib.Mib.Elements.Types;
2 
3 namespace Lextm.SharpSnmpLib.Mib.Elements
4 {
5     public interface ITypeReferrer
6     {
7         ITypeAssignment ReferredType { get; set; }
8         ITypeAssignment BaseType { get; }
9     }
10 }
11