12345678910111213141516171819 |
- using EVCB_OCPP.Packet.Features;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.WSServer.Helper
- {
- public static class Convertor
- {
- public static Actions GetAction(string action)
- {
- Actions result = Actions.None;
- Enum.TryParse<Actions>(action, out result);
- return result;
- }
- }
- }
|