Status.cs 254 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Lextm.SharpSnmpLib.Mib
  6. {
  7. public enum Status
  8. {
  9. current,
  10. deprecated,
  11. obsolete,
  12. mandatory,
  13. optional
  14. }
  15. }