12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.Packet20.Features
- {
-
-
-
-
- public abstract class Feature
- {
-
-
-
-
- public abstract Type GetRequestType();
- public abstract Type GetConfirmationType();
- public abstract string GetAction();
- }
- }
|