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 StopTransactionFeature : Feature
- {
- public override string GetAction()
- {
- return Actions.StopTransaction.ToString();
- }
- public override Type GetConfirmationType()
- {
- return typeof(StopTransactionConfirmation);
- }
- public override Type GetRequestType()
- {
- return typeof(StopTransactionRequest);
- }
- }
- }
|