Reason.cs 416 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EVCB_OCPP.TaskScheduler.Models
  7. {
  8. public enum Reason
  9. {
  10. EmergencyStop = 1,
  11. EVDisconnected,
  12. HardReset,
  13. Local,
  14. Other,
  15. PowerLoss,
  16. Reboot,
  17. Remote,
  18. SoftReset,
  19. UnlockCommand,
  20. DeAuthorized,
  21. }
  22. }