HvLogLevel.cs 233 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace QuickNV.HikvisionNetSDK.Api
  5. {
  6. public enum HvLogLevel
  7. {
  8. Close = 0,
  9. Error = 1,
  10. ErrorAndDebug = 2,
  11. All = 3
  12. }
  13. }