123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.TaskScheduler.Models
- {
- public enum Reason
- {
- EmergencyStop = 1,
- EVDisconnected,
- HardReset,
- Local,
- Other,
- PowerLoss,
- Reboot,
- Remote,
- SoftReset,
- UnlockCommand,
- DeAuthorized,
- }
- }
|