LogLevel.cs 185 B

123456789101112
  1. namespace Flyinsono.Client.Test
  2. {
  3. public enum LogLevel
  4. {
  5. Info,
  6. Warn,
  7. Error,
  8. Verbose,
  9. Debug,
  10. UserOperation
  11. }
  12. }