LogType.cs 272 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MeterVision.Util
  6. {
  7. public enum LogType
  8. {
  9. Normal = 1,
  10. Error = 2,
  11. HttpError =3,
  12. Crash =4,
  13. Mq = 5,
  14. MqError = 6
  15. }
  16. }