12345678910111213141516171819202122232425262728 |
- using EVCB_OCPP.Packet.Features.Core;
- using EVCB_OCPP.Packet.Messages.Core;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.Packet.Features.Core
- {
- public class AuthorizeFeature : Feature
- {
- public override string GetAction()
- {
- return Actions.Authorize.ToString();
- }
- public override Type GetConfirmationType()
- {
- return typeof(AuthorizeConfirmation);
- }
- public override Type GetRequestType()
- {
- return typeof(AuthorizeRequest);
- }
- }
- }
|